diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml deleted file mode 100644 index c27c392..0000000 --- a/.github/workflows/ci-cd.yml +++ /dev/null @@ -1,69 +0,0 @@ -name: experiment-ci-cd #Nome do workflow -on: - pull_request: #Executar quando houver um pull request na branch main - branches: - - main -jobs: #Define os 3 Jobs que serão executados no workflow - build: #Job responsável por compilar o projeto - runs-on: ubuntu-latest #Os comandos serão executados na última versão da distribuição Ubuntu - permissions: - contents: write #Permissão de escrita em conteúdos - steps: - - name: Repo checkout #Nome da etapa que usará uma actions para clonar o repositório do GH - uses: actions/checkout@v3 #Action reusável que clona o repo do GH na estação de trabalho - - - name: Espressif IoT Development Framework (ESP-IDF) #Interação com o ESP-IDF - uses: espressif/esp-idf-ci-action@v1.1.0 #Action fornecida pela Espressif - with: - esp_idf_version: v4.4 #Versão do ESP-IDF a ser utilizada - target: esp32 #Especifica a plataforma de compilação - - - name: Store Artifacts - uses: actions/upload-artifact@v3 #Armazena os artefatos gerados pela compilação - with: - name: experiment-ci-cd #Especifica o nome do artefato criado - path: build/experiment-ci-cd.bin - - test: #Job responsável por compilar os testes unitários e gerar os artefatos relacionados - runs-on: ubuntu-latest - permissions: - checks: write - pull-requests: write - needs: [build] #Job test só será executado se o Job build for bem-sucedido - steps: - - name: Repo checkout - uses: actions/checkout@v3 - - - name: Build tests - run: | - sudo apt-get install libcriterion-dev - sudo apt-get install meson - cd test - gcc -o test test.c -lcriterion - ./test --xml > test.xml - - - name: Show results - uses: EnricoMi/publish-unit-test-result-action@v2 - if: always() #Sempre executa essa etapa - with: - files: test/test.xml #Arquivo com os resultados dos testes - - delivery: - runs-on: ubuntu-latest - permissions: - contents: write - needs: [test] #Este job depende do job "test" - steps: - - name: Repo checkout - uses: actions/checkout@v3 #Clona o repositório do GitHub - - - name: Download artifacts - uses: actions/download-artifact@v3 #Baixa os artefatos gerados no job "build" - with: - name: experiment-ci-cd - - name: Create release - uses: ncipollo/release-action@v1.12.0 #Action para criar release - with: - artifacts: "experiment-ci-cd.bin" #Artefato que será criado na release - tag: 0.1.4 #Tag do release - bodyFile: "body.md" #Arquivo contendo o corpo do release \ No newline at end of file diff --git a/.github/workflows/experiment-ci-cd.yml b/.github/workflows/experiment-ci-cd.yml new file mode 100644 index 0000000..2a608c4 --- /dev/null +++ b/.github/workflows/experiment-ci-cd.yml @@ -0,0 +1,65 @@ +name: experiment-ci-cd +on: + pull_request: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Repo checkout + uses: actions/checkout@v4 + - name: Espressif IoT Development Framework (ESP-IDF) + uses: espressif/esp-idf-ci-action@v1.1.0 + with: + esp_idf_version: v4.4 + target: esp32 + - name: Store Artifacts + uses: actions/upload-artifact@v4 + with: + name: experiment-ci-cd + path: build/experiment-ci-cd.bin + + test: + runs-on: ubuntu-latest + permissions: + checks: write + pull-requests: write + needs: [build] + steps: + - name: Repo checkout + uses: actions/checkout@v4 + - name: Build tests + run: | + sudo apt-get install libcriterion-dev + sudo apt-get install meson + cd test + gcc -o test test.c -lcriterion + ./test --xml > test.xml + - name: Show results + uses: EnricoMi/publish-unit-test-result-action@v2 + if: always() + with: + files: test/test.xml + + delivery: + runs-on: ubuntu-latest + permissions: + contents: write + needs: [test] + steps: + - name: Repo checkout + uses: actions/checkout@v4 + - name: Download artifacts + uses: actions/download-artifact@v4 + with: + name: experiment-ci-cd + - name: Create release + uses: ncipollo/release-action@v1.12.0 + with: + artifacts: "experiment-ci-cd.bin" + tag: 8.1.5 + bodyFile: "body.md" \ No newline at end of file diff --git a/README.md b/README.md index 6211a28..49fe398 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,15 @@ -# Quasi-experimento: Roteiro sobre configuração e uso de um pipeline CI/CD +# Roteiro sobre configuração e uso de um pipeline CI/CD Este repositório descreve um roteiro prático para configuração e uso de um **Servidor de Integração e Entrega Contínua**. O objetivo é -proporcionar à pessoa estudante um contato real com essas práticas de DevOps. +proporcionar à pessoa estudante um contato real com essas práticas do DevOps no domínio de Sistemas Embarcados IoT. -**Contexto**: Considere que você faz parte de um projeto de sistema embarcado para Internet das Coisas (IoT). Sua equipe é composta por profissionais e praticantes de diferentes áreas como cientistas e engenheiros da computação, engenheiros eletricistas e de controle e automação, mecatrônica, analistas de sistemas entre outros que têm interesse na área de projetos IoT. Todas essas pessoas colaboram em diferentes partes do projeto e elas estão distribuídas geograficamente. O projeto é licenciado através de licenças de software e hardware livre. Você entende que a implementação da prática de pipeline CI/CD neste projeto pode proporcionar: maior disponibilidade aos principais contribuidores do projeto (responsáveis por avaliar os Pull Requests e realizar os Merges) para realizarem outros tipos de tarefas, promover maior qualidade ao código-fonte, incentivar a documentação contínua, obtenção de feedback dos usuários mais frequentemente, entre outros benefícios. Então, como vocês estão interessados nessa prática, construíram um roteiro para configuração e uso de um servidor de integração e entrega contínua. Apesar de existirem diversos servidores para implementação dessa prática, vocês escolheram um serviço nativo do GitHub (GH) denominado GitHub Actions (GHA), para implementar esse servidor. +**Contexto**: Considere que você faz parte de um Projeto de Sistema Embarcado para Internet das Coisas (IoT). Sua equipe é composta por profissionais e praticantes de diferentes áreas como cientistas e engenheiros da computação, engenheiros eletricistas e de controle e automação, mecatrônica, analistas de sistemas entre outros que têm interesse na área de projetos IoT. Todas essas pessoas colaboram em diferentes partes do projeto e elas estão distribuídas geograficamente. O projeto é licenciado através de licenças de software e hardware livre. Você entende que a implementação das práticas de integração e entrega contínua neste projeto podem proporcionar: maior disponibilidade aos principais contribuidores do projeto (responsáveis por avaliar os Pull Requests e realizar os Merges) para realizarem outros tipos de tarefas, promover maior qualidade ao código-fonte, incentivar a documentação contínua, obtenção de feedback dos usuários mais frequentemente, entre outros benefícios. Então, como vocês estão interessados nessas práticas, construíram um roteiro para configuração e uso de um servidor de integração e entrega contínua. Apesar de existirem diversos servidores para implementação dessa prática, vocês escolheram um serviço nativo do GitHub (GH) denominado GitHub Actions (GHA), para implementar esse servidor. ## Tarefa #1: Configurar o GitHub Actions #### Passo 1 -Crie um Token pessoal no GitHub (i) e; faça um Fork (ii) deste projeto. (i) Para criar um Token, clique no ícone do seu perfil, vá em **Settings → Developer settings → Personal access tokens → Tokens (classic) → Generate new token**. Copie e guarde esse código para usar quando o GitHub lhe pedir para usar uma senha. (ii) Clique no botão **Fork** no canto superior direito na página do projeto no GitHub. Ou seja, você vai configurar um servidor CI/CD na sua própria cópia do repositório. +Crie um Token pessoal no GitHub (i) e; faça um Fork (ii) deste projeto. (i) Para criar um Token, clique no ícone do seu perfil, vá em **Settings → Developer settings → Personal access tokens → Tokens (classic) → Generate new token**. Marque as opções `repo` e `workflows` para gerar o Token. Gere o token mínimo (7 dias) apenas para este experimento. Copie e guarde esse código (token) para usar quando o GitHub lhe pedir para usar uma senha (password). (ii) Clique no botão **Fork** no canto superior direito na página do projeto no GitHub. Ou seja, você vai configurar um servidor CI/CD na sua própria cópia do repositório. #### Passo 2 @@ -19,17 +19,14 @@ Clone o repositório para sua máquina local, usando o seguinte comando (onde `< git clone https://github.com//experiment-ci-cd.git ``` -Em seguida, copie o código a seguir para um arquivo com o seguinte nome: `.github/workflows/experiment-ci-cd.yml`. Isto é, crie diretórios `.github` e depois `workflows` e salve o código abaixo no arquivo `experiment-ci-cd.yml`. +Em seguida, no diretório clonado, copie o código a seguir para um arquivo com o seguinte nome e caminho: `.github/workflows/experiment-ci-cd.yml`. Isto é, crie diretórios `.github` e depois `workflows` e salve o código abaixo no arquivo `experiment-ci-cd.yml`. Para isso, crie os arquivos em um editor de texto ou IDE na sua máquina. Utilize os comandos `mv`, `cd`, `ls`, `mkdir` e `touch` no seu terminal ou use a GUI para criar os diretórios e arquivo e configure para visualizar arquivos ocultos. ```yaml name: experiment-ci-cd #Nome do workflow -on: - push: - branches: - - main #Executar quando houver um push na branch main +on: pull_request: branches: - - main + - main #Executar quando houver um pull_request na branch main jobs: #Define os 3 Jobs que serão executados no workflow build: #Job responsável por compilar o projeto runs-on: ubuntu-latest #Os comandos serão executados na última versão da distribuição Ubuntu @@ -37,7 +34,7 @@ jobs: #Define os 3 Jobs que serão executados no workflow contents: write #Permissão de escrita em conteúdos steps: - name: Repo checkout #Nome da etapa que usará uma actions para clonar o repositório do GH - uses: actions/checkout@v3 #Action reusável que clona o repo do GH na estação de trabalho + uses: actions/checkout@v4 #Action reusável que clona o repo do GH na estação de trabalho - name: Espressif IoT Development Framework (ESP-IDF) #Interação com o ESP-IDF uses: espressif/esp-idf-ci-action@v1.1.0 #Action fornecida pela Espressif @@ -46,7 +43,7 @@ jobs: #Define os 3 Jobs que serão executados no workflow target: esp32 #Especifica a plataforma de compilação - name: Store Artifacts - uses: actions/upload-artifact@v3 #Armazena os artefatos gerados pela compilação + uses: actions/upload-artifact@v4 #Armazena os artefatos gerados pela compilação with: name: experiment-ci-cd #Especifica o nome do artefato criado path: build/experiment-ci-cd.bin @@ -59,7 +56,7 @@ jobs: #Define os 3 Jobs que serão executados no workflow needs: [build] #Job test só será executado se o Job build for bem-sucedido steps: - name: Repo checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build tests run: | @@ -82,10 +79,10 @@ jobs: #Define os 3 Jobs que serão executados no workflow needs: [test] #Este job depende do job "test" steps: - name: Repo checkout - uses: actions/checkout@v3 #Clona o repositório do GitHub + uses: actions/checkout@v4 #Clona o repositório do GitHub - name: Download artifacts - uses: actions/download-artifact@v3 #Baixa os artefatos gerados no job "build" + uses: actions/download-artifact@v4 #Baixa os artefatos gerados no job "build" with: name: experiment-ci-cd @@ -93,11 +90,11 @@ jobs: #Define os 3 Jobs que serão executados no workflow uses: ncipollo/release-action@v1.12.0 #Action para criar release with: artifacts: "experiment-ci-cd.bin" #Artefato que será criado na release - tag: 0.1.1 #Tag do release + tag: 0.1.5 #Tag do release bodyFile: "body.md" #Arquivo contendo o corpo do release ``` -Esse arquivo ativa e configura o GHA para toda vez que ocorrer um evento `push` ou `pull_request` tendo como alvo a branch principal do repositório. Ele realiza três jobs: +Esse arquivo ativa e configura o GHA para toda vez que ocorrer um evento `pull_request` tendo como alvo a branch principal (main) do repositório. Ele realiza três jobs: - faz a compilação (build) - roda os testes (test) @@ -105,11 +102,11 @@ Esse arquivo ativa e configura o GHA para toda vez que ocorrer um evento `push` #### Passo 3 -Realize um `commit` e um `git push`, isto é: +Entre no diretório criado (use o comando cd no terminal) ".../experiment-ci-cd/", realize um `add`, um `commit` e um `git push`, ou seja: ```bash git add --all -git commit -m "Configurando GitHub Actions" +git commit -m "Configurando o GitHub Actions" git push origin main ``` @@ -118,7 +115,7 @@ git push origin main Vamos introduzir um bug simples no teste exemplo e enviar um PR, para mostrar que ele não será aceito pelo pipeline CI/CD. #### Passo 1 -Vamos considerar que o sensor retornou um valor que não é esperado pelo nosso teste. Para isso, coloque o valor 45.0 na função `Test` do arquivo [experiment-ci-cd/blob/main/test/test.c](https://github.com/parrera/experiment-ci-cd/blob/main/test/test.c). Por exemplo, basta alterar a linha 12, trocando o valor para 45.0, como apresentado abaixo. +Vamos considerar que o sensor retornou um valor que não é esperado pelo nosso teste. Para isso, coloque o valor 45.0 na função `Test`. Por exemplo, basta alterar a linha 15 no arquivo ".../test/test.c", trocando o valor para 45.0 e salve o arquivo, como apresentado abaixo. ```diff Test(suite_name, test_name){ @@ -128,7 +125,7 @@ Test(suite_name, test_name){ #### Passo 2 -Após modificar o código, você deve criar um novo branch, realizar um `commit` e `push`: +Após modificar o código, você deve criar um novo branch, realizar um `commit` e um `push`: ```bash git checkout -b bug @@ -139,34 +136,47 @@ git push origin bug #### Passo 3 -Em seguida, crie um Pull Request (PR) com sua modificação. Para isso, basta acessar a seguinte URL em seu navegador: `https://github.com//experiment-ci-cd/compare/main...bug`, onde `` deve ser substituído pelo seu usuário no GitHub. Nessa janela, você pode conferir as modificações feitas e incluir uma pequena descrição no PR. +Em seguida, crie um Pull Request (PR) com sua modificação. Para isso, basta acessar a seguinte URL em seu navegador: `https://github.com//experiment-ci-cd/compare/main...bug`, onde `` deve ser substituído pelo seu usuário no GitHub. Nessa janela, você pode conferir as modificações feitas. Então, clique no botão "Create pull request" e na janela que se abrirá, você poderá colocar uma pequena descrição sobre o PR, confirme a criação do PR clicando no botão "Create pull request". Após finalizar a criação do PR, será iniciada a pipeline, ou seja, o GHA iniciará automaticamente o fluxo de tarefas configurado no arquivo `experiment-ci-cd.yml`. Porém, dessa vez os testes não vão passar, como você poderá ver na tela que aparecerá. Você pode acompanhar o status dessa execução clicando na aba Actions do seu repositório. -Em suma, o Servidor CI/CD conseguiu alertar, de forma automática, tanto o autor do PR como o integrador de que existe um problema no código submetido, o que impede que ele seja integrado no branch principal do repositório. +Em suma, o Servidor CI/CD conseguiu alertar, de maneira automática, que existe um problema no código submetido, o que impede que ele seja integrado no branch principal do repositório. -#### Passo 4 +## Tarefa #3: Criando um Pull Request (PR) com a correção -Retorne com um valor aceitável para o código do teste. Para isso, coloque novamente o valor 25.0 na função `Test` do arquivo [experiment-ci-cd/blob/main/test/test.c](https://github.com/parrera/experiment-ci-cd/blob/main/test/test.c). Por exemplo, basta alterar a linha 12, retornando com o valor para 25.0, como apresentado abaixo. +Coloque um valor aceitável para o código do teste. Para isso, coloque agora o valor 26.0 na função `Test` do arquivo test.c. Por exemplo, basta alterar a linha 15, colocando o valor para 26.0, como apresentado abaixo. ```diff Test(suite_name, test_name){ - cr_assert(reasonable_values(25.0) == 1); + cr_assert(reasonable_values(26.0) == 1); } ``` -Em seguida, crie novamente um Pull Request (PR) com sua correção. Para isso, basta acessar a seguinte URL em seu navegador: `https://github.com//experiment-ci-cd/compare/main...bug`, onde `` deve ser substituído pelo seu usuário no GitHub. Nessa janela, você pode conferir as modificações feitas e incluir uma pequena descrição no PR. +Após modificar o código, salve o arquivo e crie um novo branch para consertar o bug, realize um `add`, um `commit` e um `push`: + +```bash +git checkout -b fixture +git add --all +git commit -m "Consertando a função Test" +git push origin fixture +``` +Insira seu nome de usuário e senha (Token) do GH se for requerido + +Em seguida, crie novamente um Pull Request (PR) com sua correção. Para isso, basta acessar a seguinte URL em seu navegador: `https://github.com//experiment-ci-cd/compare/main...fixture`, onde `` deve ser substituído pelo seu usuário no GitHub. Nessa janela, você pode conferir as modificações feitas. Então, clique no botão "Create pull request" no canto superior direito da tela e na janela que se abrirá, você poderá colocar uma pequena descrição sobre o PR, confirme a criação do PR clicando no botão "Create pull request" no canto inferior direito da janela. Você pode acompanhar o andamento do seu pipeline clicando na aba Actions e em seguida, no nome do PR criado que estará em execução. + +E, após finalizar a criação deste novo PR, será iniciada novamente uma pipeline, ou seja, o próprio GHA vai fazer o build do sistema, rodar o teste e realizará a entrega do artefato criando uma Release do seu projeto. Após criada, sua `Release` estará disponível na página inicial deste seu projeto no canto direito da sua tela. + +# FIM + +#### Passo-a-passo de configuração e instalação do ambiente ESP-IDF em uma distribuição GNU/Linux: -Após finalizar a criação do PR, será iniciada novamente a pipeline, ou seja, o próprio GHA vai fazer o build do sistema, rodar o teste e realizará a entrega do artefato criando uma Release do seu projeto. Você conseguirá ver o andamento detalhado deste seu pipeline clicando na aba Actions. Após criada, sua Release está disponível na página inicial deste seu projeto no canto direito da sua tela. #### Esquemático do protótipo: [prototype.pdf](https://github.com/parrera/experiment-ci-cd/files/12381438/prototype.pdf) -*Para deploy no protótipo*: -```bashBa +#### Para deploy no protótipo: + +```bash $get_idf $idf.py build $idf.py -p /dev/ttyUSB0 flash monitor ``` - -*Passo-a-passo de configuração e instalação do ambiente ESP-IDF em uma distribuição GNU/Linux*: `https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/linux-macos-setup.html` - diff --git a/build/.bin_timestamp b/build/.bin_timestamp index 10cda8a..a8d657d 100644 --- a/build/.bin_timestamp +++ b/build/.bin_timestamp @@ -1 +1 @@ -b9505e65371c2577b62aef61ffa58b50 /home/igor/esp/experiment-ci-cd/build/experiment-ci-cd.bin +28d44222d8f8f3663d035ae30f41f9c4 /home/igor/esp/experiment-ci-cd/build/experiment-ci-cd.bin diff --git a/build/.ninja_deps b/build/.ninja_deps index 46b8721..2e8305f 100644 Binary files a/build/.ninja_deps and b/build/.ninja_deps differ diff --git a/build/.ninja_log b/build/.ninja_log index d6b0977..7106810 100644 --- a/build/.ninja_log +++ b/build/.ninja_log @@ -1,1772 +1,932 @@ # ninja log v5 -47620 47681 1692306581111771781 esp-idf/esp_system/libesp_system.a afe0b0ab1cf1085e -39574 39781 1692306573211666419 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj e4561f8fd8078ecd -21611 22761 1692306556187439378 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj 66dc94027508e5d4 -53780 54461 1692306587891862207 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj a97c1f643ba08167 -13868 14069 1692306547487323353 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj 45128d5c2a5ae937 -11343 11443 1692306544879288573 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj 39403b40ee016ff -63493 64253 1692306597683992808 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj 54425fdb3d45faf -41413 41804 1692306575211693093 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj 25261eb8ae70c723 -68117 68634 1692306602064051227 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj 2e7ebbdd34492d66 -29011 29647 1692306563079531292 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj 67127455fceac6af -11110 11430 1692306544863288360 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr.c.obj 8661c4639a7bb67a -58562 59221 1692306592651925693 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj 3b876f6dab0b6742 -46351 46394 1692306579823754603 esp-idf/tcp_transport/libtcp_transport.a 7e1e8fcd6596fc19 -3547 3879 1692306537311187648 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj e27579f4221dfdd0 -48553 48625 1692306582055784371 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 6b996e71d20e3812 -55875 56446 1692306589875888669 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj 9cc46c11953fb3e7 -169 4353 1692374521917464491 esp-idf/esp_system/ld/sections.ld e113c5f48bbea92e -46809 46888 1692306580319761218 esp-idf/esp_event/libesp_event.a a159deee5262ef41 -11211 11303 1692306544739286706 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj dcc377f73d424271 -7585 8003 1692306541435242644 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 543ec37936cc63cc -59501 60253 1692306593683939458 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj fdc79f1519dcb4ce -49050 51016 1692306584435816114 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj 9d2c1e6f1cc033db -57546 58112 1692306591543910916 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj 84148654be7bca3d -47719 47771 1692306581203773008 esp-idf/spi_flash/libspi_flash.a 73ee9d47c62f55d2 -4217 4377 1692306537811194316 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj 8525662c2b8bd195 -54918 55939 1692306589367881893 esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj 230b97611c06c55 -59242 59500 1692306592931929428 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj 533c79e536c01b0c -67603 68403 1692306601832048133 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj f74ea9d7df6dcc3f -43810 44818 1692306578235733424 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj aa4b50f8f27b8bbd -141 169 1692374517789405114 esp-idf/app_update/libapp_update.a 1792f6de2773218d -55 124 0 esp-idf/esptool_py/CMakeFiles/app_check_size 8f6ea7f45b5fb72c -54352 54917 1692306588347868289 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac_common.c.obj f8bf2b6784a9017b -56281 56412 1692306589843888242 esp-idf/mbedtls/libmbedtls.a 85d0c49e6c565007 -62820 63116 1692306596547977656 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj 8d71dcf5db2ad5b2 -42088 42401 1692306575831701361 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/sockets_ext.c.obj 889183fd2cee1d49 -47545 47593 1692306581023770607 esp-idf/hal/libhal.a 63fa8aece9d2a6b6 -54875 55524 1692306588955876398 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj 9b5c8af404adcb73 -67102 68117 1692306601544044292 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj abeb66492474337d -45128 45617 1692306579043744200 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj 39e3895c9d1717c7 -59176 59646 1692306593075931349 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj 8aff5b19235f1a44 -8662 9155 1692306542587258007 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj fe30fd6226ac5a3b -1184 1306 1692306534739153349 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj 97f56a908b1eb7f6 -3447 4039 1692306537471189782 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj 4f397628cbff4e2b -62614 62702 1692306596131972108 esp-idf/protocomm/libprotocomm.a 4216fa78fedb96ad -56315 56724 1692306590155892402 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj 1f30738ed8cb0e4a -56412 56738 1692306590167892563 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj 4e0d66e9210a2694 -67180 67602 1692306601028037410 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj 5f9376be71edcb1b -63137 63486 1692306596915982565 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj ed0d0a1bf7ca0325 -69474 69766 1692306603196066325 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj cc9a7382bc46e35e -47681 47719 1692306581151772315 esp-idf/pthread/libpthread.a 3a38f6e4fbea0dc1 -60627 60909 1692306594331948100 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj b0a29b24cdc7fa71 -41409 41779 1692306575211693093 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj 5f631c638ad3910b -41790 42042 1692306575471696560 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj e9e3091493a80814 -69131 69556 1692306602988063552 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj ba54d304de29cb88 -44933 45533 1692306578959743080 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj 389263cba49256c5 -63616 64017 1692306597447989661 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj c712e7ec9b7b7875 -67274 68219 1692306601644045626 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj 9d997ea2be666363 -41820 42218 1692306575647698908 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/tcp_isn_default.c.obj bf2398eadae6afe1 -69896 69990 1692306603420069313 esp-idf/dht/libdht.a b412e65a30a98ff2 -62706 63151 1692306596579978083 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj 419148a82dcb7baa -62702 63137 1692306596567977923 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj 3a4595d7359cd0d7 -11228 11342 1692306544775287186 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b790d6e24a245a52 -60931 61211 1692306594639952208 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj 1952a0be98d329c8 -22761 23389 1692306556823447859 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan87xx.c.obj a2ec99a2639676e9 -60742 60931 1692306594359948474 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj 20cb4e69eeb7f826 -60289 60481 1692306593911942498 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj 3233197c68cbab04 -12770 13161 1692306546595311458 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj f5b4521d4c9c1c40 -60024 60289 1692306593719939937 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj 7fb6ee98976ad605 -59476 60024 1692306593455936417 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c.c.obj a563fd1915dacf3c -47260 47319 1692306580747766926 esp-idf/freertos/libfreertos.a 565e57144ff2802c -3964 4217 1692306537651192182 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj f8e69e089c47acc3 -9805 10134 1692306543567271076 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj 5d5c13974cf53202 -42218 42537 1692306575967703175 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/esp_pbuf_ref.c.obj 12ce06656eedf7db -47038 47077 1692306580507763726 esp-idf/vfs/libvfs.a 7e337c4c7871bc63 -46701 46739 1692306580171759244 esp-idf/esp_phy/libesp_phy.a 5c431cdb1f0473bb -16594 16871 1692306550303360907 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj f66a8cdc2d260076 -10924 11006 1692306544435282652 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj a5f5262d551ef546 -11245 11370 1692306544803287560 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 89f0cf946cdddef1 -46606 46701 1692306580131758711 esp-idf/wpa_supplicant/libwpa_supplicant.a 40cd3b13cc6556d4 -11280 11715 1692306545147292147 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b6115b7542757934 -43630 44473 1692306577891728836 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj 1e120e320c6c91a1 -46285 46350 1692306579783754070 esp-idf/esp_http_client/libesp_http_client.a abe7b7159274bf24 -45534 45976 1692306579407749055 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_spi.c.obj d06b0cb295ec642a -45439 45829 1692306579259747081 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl.c.obj d4a62e3315480378 -2309 2858 1692306536291174046 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj fca6889f109e6c10 -61265 66137 1692306599540017562 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj 9d9ee07f74ede711 -683 1238 1692306534667152389 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj 8bed98b3501f8b14 -5202 5719 1692306539151212186 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj a6a894268b9c1892 -57974 58278 1692306591707913103 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj 1514a558acb22bcb -44818 45131 1692306578563737798 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj 80bbaabb21b946d2 -41804 42120 1692306575551697627 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj 6a3adade128c3d04 -44407 44883 1692306578311734437 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj a2d4b78c9f51c9d4 -48355 48553 1692306581983783411 x509_crt_bundle.S b25270f24a599d95 -10262 10424 1692306543859274971 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj 8f5c5c322bf2d012 -2633 3023 1692306536415175699 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj 38743e3bbd75d72d -43622 44116 1692306577547724248 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj 154a5f6206c5dca0 -10888 11205 1692306544639285373 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj f7a2feda61be6dad -68404 70081 1692306603504070434 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj d389356e028082b9 -59222 59530 1692306592959929801 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj 89e471fd3e984fe4 -42602 43413 1692306576843714859 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj edfd5730f3f007d6 -41881 42584 1692306576015703816 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj 223ece066ade0740 -495 607 1692306534043144068 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj baf542f2b9f13343 -43681 44358 1692306577787727449 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj d5838c89b392e604 -41580 41880 1692306575311694426 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj 68e06ba05165e202 -7025 7203 1692306540631231923 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-update 682598f9e9ba3671 -13622 14130 1692306547563324367 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj 16399c91729cf9d1 -13296 13478 1692306546911315672 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/touch_sensor_hal.c.obj 83b9bbdc465e6a0f -49114 49748 1692306583163799149 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj a6235c593e8301d8 -13161 13262 1692306546687312685 esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj bf6b1e4a96dbb35c -10529 10671 1692306544099278171 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj 77b0decede78db6a -70459 70493 1692306603924076036 esp-idf/main/libmain.a da7fbe0937e18059 -11445 11597 1692306545031290600 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj b936722bffedc1fe -14340 14494 1692306547927329221 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj c5a499d3bc002fae -55 147 1692306550007356960 bootloader/bootloader.map 546f90292dc26503 -12910 13044 1692306546479309911 esp-idf/hal/CMakeFiles/__idf_hal.dir/sigmadelta_hal.c.obj 927c4d13b076b1e8 -31487 32028 1692306565463563086 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj 47a36a48022c77ca -34925 35442 1692306568867608483 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj c922b2ceab98b1eb -47771 47813 1692306581243773542 esp-idf/bootloader_support/libbootloader_support.a 51560f3c61ab6ce -14751 15062 1692306548495336796 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 31beb94b008e486c -12119 12261 1692306545695299455 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj d9acb8fd466d1b5 -61311 62063 1692306595491963572 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking_lwip.c.obj 9ced682e1106fbcb -11618 11980 1692306545415295721 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj 9341f162ac5fcd3a -21243 21926 1692306555359428335 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj 15d41b60db01cee0 -62529 62820 1692306596251973708 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_checksum.c.obj 658d754ce42ff0eb -10104 10261 1692306543695272784 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj 2df9bd931afb6ee5 -46492 46565 1692306579991756844 esp-idf/lwip/liblwip.a d6e82d44060c2e62 -11508 11862 1692306545291294067 esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj 96f29e354c3e7bcf -59304 59476 1692306592907929108 esp-idf/console/libconsole.a 7b9442c347b633f -147 161 0 bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 -67170 67274 1692306600700033034 esp-idf/perfmon/libperfmon.a 7027c639f77dad31 -48554 48706 1692306582135785439 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj c81e5df9382fc6ef -15593 15935 1692306549367348425 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj 6b783aa923ed8b83 -11051 11109 1692306544543284092 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj a9e7f1723d8dcd80 -804 1157 1692306534591151376 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 59d208926061e7df -10736 11051 1692306544483283292 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj 7e30941ed3719b22 -20697 21265 1692306554679419266 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 19acfb3bcaf4cdc2 -10434 10735 1692306544167279078 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj e6f5b851d84388e2 -10237 10489 1692306543923275824 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj ff2239ce3887c780 -16476 16772 1692306550183359307 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.c.obj 5d708384165ed93d -21805 22033 1692306555467429775 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj d51b2bab8fb2b83b -8211 8372 1692306541807247605 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 727ebec46bbf85ae -10912 11151 1692306544583284626 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj c9ef13687a53587e -11006 11084 1692306544519283772 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj cc66870ecca757ec -48555 48876 1692306582307787732 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj c35ed0145813a93d -46394 46427 1692306579859755083 esp-idf/esp_gdbstub/libesp_gdbstub.a 4ca9241891e0bc -37223 38476 1692306571903648974 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj 9a6b2bb2c69dc725 -56582 57541 1692306590967903232 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj 676dcbf2771a0de1 -6001 6908 1692306540335227975 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj 1a588e6fa85e02ce -48969 49294 1692306582723793281 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj 12ce1aebd3cdaa2b -3360 3646 1692306537079184554 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj fdb528a09bf9f528 -2049 2454 1692306535887168658 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj e8d3f5fc367d3ba2 -2773 2958 1692306536391175380 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj efb88c26dcf264d7 -16290 16454 1692306549887355360 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj ea46d06e7fb6964d -4768 5608 1692306539043210745 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha256.c.obj febf2a88e2791f5d -63 140 1692374517761404711 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj 9edecc3494df4576 -43510 43604 1692306577035717419 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/xt_debugexception.S.obj 75504041b71db99b -54255 55324 1692306588751873677 esp-idf/driver/CMakeFiles/__idf_driver.dir/twai.c.obj 16cdbace5166033e -7025 7203 1692306540631231923 bootloader-prefix/src/bootloader-stamp/bootloader-update 682598f9e9ba3671 -640 1099 1692306534531150575 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj 6e598b5c2e90d27c -28556 29011 1692306562447522863 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj 6e997404843234e1 -46251 46284 1692306579715753162 esp-idf/esp_http_server/libesp_http_server.a 6232ccfa43d497bb -23225 23415 1692306556843448126 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj 2fae14e5fd14d4d0 -55 147 1692306550007356960 bootloader/bootloader.bin 546f90292dc26503 -6908 7372 1692306540795234110 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 9b1a9bc11db84574 -46428 46460 1692306579891755510 esp-idf/esp-tls/libesp-tls.a e430b93410edbc69 -14212 14325 1692306547759326981 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj 1e2ca80be510e466 -64590 64987 1692306598420002624 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj a0367ce4b49e5222 -21926 22458 1692306555891435430 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj 897b1b5ebd67accf -24730 26368 1692306559799487549 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj 1b8c4a6d6280eec8 -14326 14430 1692306547863328368 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj 191cf667ee0860f9 -49459 49649 1692306583079798029 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj c24b5c178296734 -14324 14440 1692306547875328528 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj 3ea6c929e90ab031 -66938 67102 1692306600532030794 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj fea9be3aeedf0420 -14430 14583 1692306548015330395 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj 570719c920d26136 -47996 48354 1692306581763780477 esp-idf/mbedtls/x509_crt_bundle fdacb1ab98b5befe -14527 14630 1692306548063331034 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj 1c8cc56b36e78d24 -7040 7443 1692306540879235230 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b1c2bf2fd14fc65b -36192 36420 1692306569851621607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj 8111dfdfb6a0654 -14531 14691 1692306548127331888 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj d2c44c9be61e50fa -16871 17525 1692306550959369656 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj 61c8e39d592f8266 -64696 65271 1692306598700006358 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj dfaea5481fbde7fd -55 147 1692306550007356960 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.map 546f90292dc26503 -8209 8565 1692306541999250166 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj 13018eb731ac05c -70081 70184 1692306603616071928 esp-idf/wifi_provisioning/libwifi_provisioning.a a422d177af72e4bc -18324 19185 1692306552619391794 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj 60cb15eb7ccc39dd -39675 40679 1692306574091678156 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj 28c61c62b63c8f2b -14583 14734 1692306548167332422 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sigmadelta_periph.c.obj b8e52adff763c702 -13581 13803 1692306547239320046 esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj f18e33a8f0afb2da -45288 45843 1692306579271747241 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj 131b3d3c919dffb6 -2733 2935 1692306536367175059 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj dc5ad0137a8b3253 -14630 14751 1692306548183332635 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj 6ca1093a3b710e20 -57624 57720 1692306591151905687 esp-idf/cmock/libcmock.a e05909dd92f378d3 -61211 62016 1692306595431962772 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj 2e471672f8c55b2e -43604 43884 1692306577315721154 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp_common/gdbstub_common.c.obj 2d0f990b962b48de -11862 12035 1692306545471296468 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj 4547865b01f236cd -9440 9766 1692306543199266169 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj 2fcd644d54a9f55f -14685 14796 1692306548231333275 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj 445221c69fed7df3 -47126 47176 1692306580607765059 esp-idf/esp_common/libesp_common.a 5ad951e038e0f3a9 -66776 66938 1692306600368028606 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj 398ccae258bc7155 -58606 58829 1692306592259920465 esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal_common.c.obj beb78a190815c26 -14715 14888 1692306548323334502 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj 6618c967d6c77452 -29622 30382 1692306563815541108 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj 94c41e56f153fcbc -18366 18668 1692306552103384913 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj 15075029eda9bae8 -16390 16476 1692306549911355680 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vector_defaults.S.obj b1ac872c590e3f39 -60896 61311 1692306594739953542 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj c77b63148cb77134 -14796 14910 1692306548343334769 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 36356e39d61a0988 -14910 15119 1692306548551337543 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj 6c1d99540bf9ef99 -14889 15144 1692306548579337916 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj 181b1b9896b239a2 -4912 5670 1692306539103211546 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha512.c.obj 81619445f0b9facf -48877 49458 1692306582883795415 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj de066c0abdec6fa4 -20856 21243 1692306554679419266 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 1326dce08a993384 -63116 63436 1692306596867981924 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj 6027e38d9c297152 -26603 27165 1692306560599498218 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj bbed4b26a7586e -64987 65588 1692306599020010627 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj da52fdadf5298675 -44179 44457 1692306577883728728 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj 11130dab765d5c3e -35838 36428 1692306569843621501 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj 59e091ce44f8ebda -53256 53985 1692306587415855858 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj 8306981b5cf73114 -9155 9307 1692306542739260035 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj f305003bead6f11f -26611 26988 1692306560419495817 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj 3134067022ecd08 -36810 37162 1692306570591631476 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj 86d6275b07bbe5cc -15062 15470 1692306548903342237 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj cbff50fe714b20c -4581 4949 1692306538379201890 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/aes/block/esp_aes.c.obj b337f7b092da2664 -13628 14006 1692306547439322713 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj 4a9d3339be738e6e -40679 41193 1692306574623685251 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj b81322ca60058bbe -15481 15752 1692306549183345971 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj 8bae08fd7fb079a9 -27027 27556 1692306560991503445 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj 38019dac5ea8fcc4 -42349 42762 1692306576191706162 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj 11ef364658037704 -38906 39228 1692306572659659057 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 5c7e28036a277ce7 -22458 23224 1692306556655445619 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj 1f73ec91a67cab6 -15902 16358 1692306549791354079 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj be7a6606c6b3be55 -42120 42434 1692306575863701788 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj f47725188e2121ca -28253 28534 1692306561967516462 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj cea359fc680f8eed -34521 34953 1692306568383602029 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj 28c85a251e739128 -27960 28549 1692306561979516622 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj 95af2614f6b0a120 -63151 63493 1692306596923982671 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj 656f974b7596615 -69501 69653 1692306603084064832 esp-idf/spiffs/libspiffs.a 9298b88dfed638c4 -46981 47038 1692306580467763192 esp-idf/esp_netif/libesp_netif.a 9a0e5a4789db4bb6 -28135 28743 1692306562175519236 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj 96ae0f44ccae3083 -28664 29173 1692306562607524997 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj 9bee6b99cc4764a1 -2172 2509 1692306535943169405 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj d20a37f48fd56f2a -5276 6737 1692306540167225735 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj e9b11a32c120c286 -49749 50269 1692306583699806298 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj 9102f7c3a55d884c -28655 29520 1692306562955529638 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj ae8a4ae1ae125cc5 -7540 8200 1692306541631245258 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj ac73403eec5b8a46 -43413 43509 1692306576939716138 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub-entry.S.obj 49fdda1ebfff76fd -31652 32078 1692306565511563727 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj 7983fa1febf6c966 -28853 29563 1692306562999530225 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj 60c9ec42df46bc20 -14734 14896 1692306548331334609 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/compare_set.c.obj 273048751aefc979 -28357 28663 1692306562095518169 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj cdcac5bc1b81cb64 -30560 30978 1692306564411549056 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj 71764410192613e0 -65588 67590 1692306601012037196 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj 69f8cc8771dac722 -4950 5276 1692306538707206265 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/md/esp_md.c.obj 472469257bb4ae66 -18556 18942 1692306552375388540 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj 865862db37a360e1 -16693 17293 1692306550723366509 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj 8d20bb5ea00548c1 -18343 18913 1692306552347388166 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj 4559f449397f2c64 -46739 46808 1692306580239760151 esp-idf/nvs_flash/libnvs_flash.a 441bf494f6f156b4 -16251 16390 1692306549823354506 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S.obj f325627b1db89547 -13388 13580 1692306547015317058 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/gpio_hal_workaround.c.obj ba4980771c855f57 -51016 53248 1692306586663845829 esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj 726f8a591cb66154 -39865 40354 1692306573783674047 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj 6ae74d694f72c2bb -36908 37222 1692306570651632276 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj 83ddd6fa6c8d3963 -14154 14340 1692306547775327194 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj 113b01e440d959dd -42434 42838 1692306576267707177 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj dbdab03fce7f0b9b -39694 40089 1692306573519670527 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 376540643e3698ef -3353 3702 1692306537135185301 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj eeddb740db185656 -37162 37509 1692306570939636118 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj c278c50b708d8ffc -26332 26603 1692306560035490696 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj 5f62c663984384e8 -58244 58498 1692306591927916037 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj 1a266a6e51155b -15355 15504 1692306548939342717 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj 911640c84d575a9f -14574 14715 1692306548147332155 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj b4459892a8499bd7 -60115 62495 1692306595915969227 esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj c493bc723ce0f2ca -31545 32145 1692306565579564633 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj afbb82a2c6881751 -9374 9610 1692306543043264088 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj b548d73014eabb8d -31502 32220 1692306565655565647 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj bcbd7a13b7fdf977 -9766 10104 1692306543539270703 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj e088e5258bd2724e -31820 32323 1692306565755566981 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj 894c1288ef4b0132 -40564 40773 1692306574203679649 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj c16fbbc268ecd0b9 -5608 6000 1692306539435215973 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj 5fcd1bc575cf08a8 -44325 44906 1692306578335734758 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj 17836c8b6913a209 -3024 3398 1692306536831181247 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers.c.obj 9a9170ac41d3e60c -34705 34932 1692306568359601708 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj 78bf895713324ca2 -32323 32992 1692306566423575890 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj 91133810a2230cce -47319 47398 1692306580827767993 esp-idf/esp_hw_support/libesp_hw_support.a d182f33cf0deed44 -2091 2252 1692306535687165991 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj 1b6bfa6174df8fc2 -13804 14574 1692306548003330234 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_tlsf.c.obj 49278e1621099b4c -14691 14839 1692306548275333862 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj 909a4e134f9c9b6c -4354 5009 1692374522625474663 experiment-ci-cd.elf b5dc7688cc069bf -29521 30455 1692306563879541961 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj f8a44fa05fbbe2c9 -11303 11357 1692306544787287346 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tjpgd.c.obj 7273a5df4f20ffa7 -44883 45127 1692306578559737745 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj 1a99e68508cd7847 -32664 33231 1692306566643578824 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj b3804d3da086075b -15983 16156 1692306549587351359 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj e50bef691f7c907b -33233 33992 1692306567423589226 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj 73b91a1e183ed6ff -51226 51942 1692306585371828597 esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj b0b6d33af6bd8145 -64391 66632 1692306600044024285 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj 2d8824dce34ab91a -33534 34166 1692306567595591520 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj 944e4091b0426a2d -15568 16396 1692306549827354560 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj 39d0f96cceb6c4f6 -34166 34520 1692306567947596213 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj 1a24bafe53e7c2f -44359 44933 1692306578359735077 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj 9b5fd2fed0bfce86 -43885 44179 1692306577607725048 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj 8d670621f75cf551 -36 495 1692306533571137773 /home/igor/esp/experiment-ci-cd/build/partition_table/partition-table.bin e74d74eaeb420b13 -19827 20695 1692306554127411905 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj aa13910fea16ebe -43355 43622 1692306577047717580 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj f149e10b423ba6a4 -33952 34679 1692306568107598348 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj 3a626fdff4de15cd -67145 67641 1692306601072037996 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj 73835d6db276fb22 -23362 25187 1692306558619471811 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj a52326792668c5dc -53249 53910 1692306587339854845 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj b489cd94a676495b -10671 10924 1692306544359281639 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj 6f1d882b48c6d67c -67720 69500 1692306602920062644 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj cbd3b3581fd9a353 -57965 58244 1692306591675912676 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj 3d8d32fb7feb6718 -57159 57531 1692306590963903179 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj 969575da72e3151e -27401 28357 1692306561791514115 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj 8ccbdbf52517616d -34738 34925 1692306568355601655 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj a2e1c1050f5a61b3 -42762 44325 1692306577751726969 esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj 47af269127d4fa0e -66633 66776 1692306600208026472 esp-idf/fatfs/libfatfs.a 659a652bd2b9b721 -56128 56582 1692306589999890322 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj dc8e6cf97de78789 -47881 47909 1692306581339774821 esp-idf/mbedtls/mbedtls/library/libmbedx509.a d9aca3808fc80edd -16742 19477 1692306552907395635 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj a6fdc3a6d147a2ff -53006 54254 1692306587679859380 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj fb71d86796ee2ade -36428 36810 1692306570239626782 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj 3952559c1d80d3da -55 147 1692306550007356960 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.elf 546f90292dc26503 -49938 51123 1692306584551817660 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj 3072c9922ac92a70 -19477 19768 1692306553203399582 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj 9fbb1d628c11baed -63486 63941 1692306597371988647 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj bb9e9b42445d04b7 -36900 37478 1692306570907635690 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj d335a85e0723573d -479 804 1692306534239146681 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj a793110c2f5f43a0 -46 4608 1692899888061376458 build.ninja d4215ddd16e07ec5 -49649 50529 1692306583959809765 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj d9bfa6ec34ab7e8e -47996 48354 1692306581763780477 /home/igor/esp/experiment-ci-cd/build/esp-idf/mbedtls/x509_crt_bundle fdacb1ab98b5befe -26989 27400 1692306560835501365 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj 77a28ca8ab95225d -9610 9758 1692306543191266062 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 8c6a2fe9fdede08 -18942 20063 1692306553495403476 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj f513e768f61e84e -361 1235 1692306534667152389 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj 8741009d52c19afb -11085 11245 1692306544679285906 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj 6549dba6dacd1d44 -57947 58169 1692306591599911662 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj 56e151225bdfb667 -11357 11398 1692306544831287933 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 1466ba805483f3b8 -8895 9440 1692306542871261795 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj 5e783fe423c6eee9 -9095 9374 1692306542807260941 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj 3724998cc1739411 -13415 13622 1692306547055317592 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj 67a46c286c1e667e -10490 10753 1692306544187279344 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj 9f39fc8b95f3bb05 -9307 9671 1692306543107264942 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj b28d2601a435ae36 -8843 9212 1692306542639258701 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/flash_ops_esp32.c.obj 1149273985103764 -1966 2037 1692306535471163111 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mps_trace.c.obj bf767a4e94e8f777 -1553 2091 1692306535523163804 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj 1f5f1528c05b070f -10219 10434 1692306543867275077 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj 2f49e38ed8019713 -8495 8662 1692306542095251446 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj 552b615caef1301e -8388 8658 1692306542091251393 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj dd3a0ab25f01bc3d -27745 28059 1692306561491510114 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj 224d5ede1034abb3 -38006 38471 1692306571899648921 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj ddbd55e0351bd7f5 -52339 53006 1692306586435842788 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj 743a16f5ed0e38e3 -8560 8705 1692306542135251980 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj 40db34470a2ff0a5 -32220 33054 1692306566487576743 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj 4bcc3f811dd6d49f -8103 8388 1692306541819247765 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj 3a5789c4c34502ee -8873 9805 1692306543235266649 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj 74f5b47377b3938c -33054 34302 1692306567727593280 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj 6ac36e5c379dc7d7 -8143 8208 1692306541643245418 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj 8cbb0dd0e9dfb3d6 -192 478 1692306533911142307 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj ef1489f64e0a59ed -55524 55874 1692306589303881040 esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/dac.c.obj 92ca07712117d91f -1236 2467 1692306535895168765 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj d3506bdec0cc1110 -14494 14685 1692306548119331782 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj 20e595009b8bde2 -55325 56127 1692306589555884401 esp-idf/driver/CMakeFiles/__idf_driver.dir/adc_deprecated.c.obj 7fddfe52a6fbdcc3 -7803 7956 1692306541391242058 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 219dc7b6e8b88053 -27579 28019 1692306561455509634 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj 8f75a2298feac663 -7626 7847 1692306541279240564 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 5780df8b3122ac9b -1457 1838 1692306535271160443 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj 12ae550bbb07b983 -3398 3547 1692306536983183274 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj 248a6fb516089fe2 -56447 56571 1692306590003890376 esp-idf/esp_pm/libesp_pm.a c015b7f8358c4e4e -12035 12199 1692306545631298601 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj b819ffd84ad6a909 -5139 5341 1692306538775207171 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj 753f81f28e2f469f -57293 57413 1692306590843901579 esp-idf/app_trace/libapp_trace.a e2cadc11fcdd8067 -11597 12154 1692306545587298015 esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj d7a60b83aacc35b0 -40918 41455 1692306574879688665 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj 406b39e34fa39de0 -21265 21610 1692306555043424121 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj 49549a4a4562a184 -6921 7025 1692306540459229629 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-download b836621c4df76d7f -3249 3678 1692306537111184981 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj dc33929c230745b3 -48687 49050 1692306582479790027 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj a764497c13bc950d -56738 57066 1692306590495896938 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj c73d7fe5f55745d -50529 51226 1692306584655819047 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj 49d9f6e6a61f1b8c -2958 3360 1692306536791180714 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj 977e0557e7820619 -38380 38906 1692306572335654736 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj ab213928b04905b8 -48577 48765 1692306582195786239 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj a6e214d52f88e28d -7444 7626 1692306541059237630 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 6b419ff319ac40b1 -9671 9939 1692306543371268463 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj 89efcb5ea7932188 -10544 10895 1692306544327281212 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj 27c34396d2ac4f81 -7737 7858 1692306541291240724 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 7d4eb607a1ae419e -1491 1705 1692306535139158683 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj 5f0caeb934bcc8ee -2933 4581 1692306538007196930 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj 22e152b24d5e5bd4 -51594 53780 1692306587203853031 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj 8ef09bede0d60a21 -35116 35820 1692306569243613499 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj 94d7facab62d6449 -36 495 1692306533571137773 partition_table/partition-table.bin e74d74eaeb420b13 -13045 13296 1692306546731313271 esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj 389d5d69c0a57db6 -55792 55963 1692306589379882053 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj 68fa218f2e9c0a10 -1092 1216 1692306534651152176 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj 8111f09a7e577e88 -2037 2172 1692306535607164924 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj e351594fb2fad16c -66315 66471 1692306599904022418 esp-idf/esp_local_ctrl/libesp_local_ctrl.a a317a8bd663cafaa -11716 12118 1692306545551297535 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj 14454c13af00977f -58278 58561 1692306591931916090 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj a61dd73ab1a1b910 -5341 5751 1692306539187212666 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj e5dc330b10e40b9d -12524 12749 1692306546179305910 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj 752c800ba4ebca85 -25790 27027 1692306560455496297 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj 3e2718c7e884bd02 -12361 12769 1692306546195306123 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj 4de696e5e438d48 -57345 57546 1692306590975903340 esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj 5e5818f26250143 -12058 12371 1692306545803300896 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj caadf5b6b0cc8d09 -3879 4062 1692306537495190102 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj 9e9401b70239a1c2 -14069 14140 1692306547575324527 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 8a7fdcf4a8425da7 -12718 13007 1692306546443309430 esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj c853cc14a1ec203 -63 429 1692306533859141614 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj cb67609f03a46a4b -33149 33534 1692306566963583091 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj 37b879014833557d -11370 11507 1692306544939289373 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 74343634cf8a9b33 -4988 5507 1692306538939209358 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj d2623d10143fb87f -13263 13415 1692306546847314818 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/brownout_hal.c.obj 1dcb4d0e42d44f27 -39228 39574 1692306573003663645 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj e87ab1473a7bc3d4 -6615 6805 1692306540239226695 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj 7b07c998cd53c612 -30979 31545 1692306564979556632 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj c0a4de31cec00c3a -47847 47881 1692306581311774449 esp-idf/mbedtls/mbedtls/library/libmbedtls.a 63706320cec96634 -7957 8111 1692306541539244031 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 83afeda68e41e886 -2467 2732 1692306536167172392 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 5631dd8fe9507815 -59824 60348 1692306593779940738 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj 6173ea6fe2345d13 -51943 52381 1692306585811834465 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj 984e51b4830df9ea -161 206 1692374531781605899 /home/igor/esp/experiment-ci-cd/build/CMakeFiles/bootloader-complete 50d824e63b5d6e74 -6339 6504 1692306539939222694 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj 6aa6171f5711e50d -33884 34563 1692306567991596801 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj 1948f09367536d07 -1705 2309 1692306535743166738 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 3f5f8b3fc4603d0b -29175 29622 1692306563055530972 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj 89484726582387b0 -10024 10237 1692306543671272463 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj 33e84bd328ec3459 -3678 3800 1692306537235186634 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj 6dde04f6c5c03663 -28018 28252 1692306561687512728 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj 2fcb2296172db216 -9756 10023 1692306543459269636 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj 50dc4ebd5655286d -28059 28555 1692306561987516728 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj 976e70999e94041a -7364 7736 1692306541171239124 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b2da227d782da917 -7203 7332 1692306540767233737 bootloader-prefix/src/bootloader-stamp/bootloader-patch d39302137e18d517 -4460 4710 1692306538143198743 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj 20c40af05b1cf98a -41534 41820 1692306575247693573 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 60dfeae780df5b68 -55 147 1692306550007356960 bootloader/bootloader.elf 546f90292dc26503 -32201 33212 1692306566643578824 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj a4cf5ae7a8e0aa5b -43126 43632 1692306577059717739 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj 5bf93f11abb9c0d0 -1726 1966 1692306535399162151 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj 8f92dcf0d1eebe20 -44116 44407 1692306577835728089 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj be2b4f5748a822b -6840 7362 1692306540795234110 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj 644a379160797eca -69403 69853 1692306603284067499 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj 84b17bd12ac73522 -5507 5771 1692306539203212879 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj 79850bdd284d3bed -39809 41197 1692306574619685197 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj 58324d4a01d4b5f -12155 12361 1692306545795300789 esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj 6fc09cf7ddce0b4d -37925 39178 1692306572587658097 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj 7bc0d4cf87be6870 -37577 37925 1692306571355641666 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj 8d6ed43690f15913 -15504 15728 1692306549151345544 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj d0f6eff02bee6879 -8514 8872 1692306542307254273 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj e0adf6fa31cda68d -4378 4547 1692306537983196610 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_timing.c.obj f8d718bff4aa006 -12586 12718 1692306546151305536 esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj f98ebd0aade1d3a8 -12978 13868 1692306547295320793 esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj e3d57c5cfd5c8faf -63436 63503 1692306596935982832 esp-idf/espcoredump/libespcoredump.a 4beb99c500314894 -57066 57345 1692306590775900671 esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj 1db9cdfcd5c96585 -17270 17469 1692306550903368909 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_compat.c.obj 7d942be6fb0cc1ce -60910 61347 1692306594775954022 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj c64931ae8724b82a -32993 33297 1692306566727579944 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj e90ce4696a689fea -4623 4911 1692306538347201464 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj c38e3fd4b8173223 -206 4742 0 CMakeFiles/flash eb0b64d38518b230 -4627 5137 1692306538571204451 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_bignum.c.obj 670ee5380b7c4442 -39100 39750 1692306573179665992 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj af8c67965ed147da -1838 1916 1692306535351161511 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj ca4af85425b811cb -511 640 1692306534075144495 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj ed350a1569206d36 -48355 48553 1692306581983783411 /home/igor/esp/experiment-ci-cd/build/x509_crt_bundle.S b25270f24a599d95 -63503 63616 1692306597047984325 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj d2a3884e91daf3f3 -11151 11227 1692306544659285639 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj 7c8720b5cabfc28 -23389 24947 1692306558379468611 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj 7b1a1b069a7f9252 -607 979 1692306534407148922 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj 1b47248abd61aeea -14006 14184 1692306547619325113 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj 38ab6c6e2a109f27 -36 70 1692306533491136707 /home/igor/esp/experiment-ci-cd/build/project_elf_src_esp32.c aefaed129c824ff9 -10425 10887 1692306544319281105 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj ec6620e3481ed2c6 -2454 2773 1692306536207172926 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj 85d774e2238a77cf -57281 57947 1692306591375908675 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj c3dd7d4b7ac52e8a -1443 1726 1692306535159158950 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj 974c150536142650 -37225 38006 1692306571435642733 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj 6e05521cb9ac064d -61347 62258 1692306595687966186 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj 2b74a5d262d285dd -55939 56280 1692306589695886268 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj 22f9f2a6240be923 -69272 69473 1692306602904062431 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj d0e7a1a6d4633755 -6034 6426 1692306539855221574 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj f5b24e2cb6ad9792 -57 549 1692306533983143267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj 251b3a4de012a6a9 -63243 63750 1692306597179986086 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj 9abacebfb074e828 -32079 32561 1692306565995570181 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj e281919c99f64267 -5719 6034 1692306539467216400 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 3c256ff34a8bb7e5 -12740 12909 1692306546343308097 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj 234d2a841c7631ae -4223 4378 1692306537811194316 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj 9adec72847ffe547 -5009 5149 1692374522769476731 /home/igor/esp/experiment-ci-cd/build/.bin_timestamp 4c7337a5034d9186 -13226 13387 1692306546823314498 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/adc_hal.c.obj 2e7d4894a5b38660 -40134 40564 1692306573995676875 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj d174092b16d86788 -77832 77868 1692306611300174416 CMakeFiles/experiment-ci-cd.elf.dir/project_elf_src_esp32.c.obj 69cf2a09464594e6 -54462 55792 1692306589219879919 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj f0dfaf490901db6 -6426 6615 1692306540051224188 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj a8fba002ee6f86b6 -52373 53255 1692306586683846096 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj 54b81c9dc5c20119 -68851 69271 1692306602700059710 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj 70d822cd6856eae0 -8372 8514 1692306541947249472 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj c3ac9bda18bbf9f3 -45533 46022 1692306579451749642 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj 3d5db15ba0a28b30 -5772 6339 1692306539771220454 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj d1708d322ceed5cd -3800 4186 1692306537619191755 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj 911ebc1de129bebb -41377 41579 1692306575011690425 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj f035edd83652dd12 -46565 46606 1692306580035757430 esp-idf/esp_wifi/libesp_wifi.a 5c54596a4a97f9d0 -12749 13039 1692306546471309804 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj 45214a5c98264dab -14440 14527 1692306547963329701 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj c03502831f532c3d -61112 61265 1692306594695952955 esp-idf/esp_lcd/libesp_lcd.a 5aa00d0770bc89b -9939 10218 1692306543651272197 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj 9fb04fae07260dee -4039 4298 1692306537731193249 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj cba107ac6d01cbfd -7847 8103 1692306541535243978 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 78c2f4669e425f73 -48571 49347 1692306582767793868 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj f6337f47c365bb9c -4741 5202 1692306538631205251 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha1.c.obj 199b48c218c71a99 -46155 46213 1692306579643752202 esp-idf/sdmmc/libsdmmc.a 729f8527e30a03cf -13008 13226 1692306546659312311 esp-idf/hal/CMakeFiles/__idf_hal.dir/dac_hal.c.obj 5dccb610994b6435 -27413 27960 1692306561383508673 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj a6c4535d33e5c957 -27556 27744 1692306561179505953 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj b291c3a96b1afac0 -42042 42601 1692306576031704029 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj bbb055521806df4e -45132 45535 1692306578963743133 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 11413e899452591e -18269 18555 1692306551991383419 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj f6b9a0d6cbf0cf0a -65363 66248 1692306599676019377 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj f88e63ab97e312dc -43633 43810 1692306577239720140 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj 88e3b83bf2486df8 -41118 41413 1692306574843688185 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj bd91ab08c6f9bc3a -8111 8494 1692306541927249206 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition_target.c.obj e6bc6029fe2efee -23135 23362 1692306556795447486 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj 794d8dd3652a24dd -6805 6921 1692306540347228135 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 75ab04782dc6cc53 -30456 32201 1692306565619565167 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj f178cb53d7b0493 -22033 22881 1692306556311441031 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj dcbf1eb1fc70ee19 -59646 60115 1692306593543937591 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj cbdf58c2c1507193 -35251 35974 1692306569403615632 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj 5ba63ddc4610bd5c -16773 17609 1692306551043370776 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj 54ce34464e618b3a -8705 9094 1692306542527257207 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj f8fbaa622850e0a1 -28743 29308 1692306562743526811 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj 9a35987a91c5a28c -28549 28982 1692306562415522437 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj cbf116f8c585fe8e -4490 4741 1692306538175199170 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj a2a6e11aa884fc3 -2859 2974 1692306536407175593 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj b43a8098ad65a828 -46022 46155 1692306579587751455 esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a c926d7571e5b0c25 -12389 12524 1692306545959302976 esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj 572dc3bf72a0f9d7 -11927 12052 1692306545471296468 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj d4b505e9291f8f40 -59530 60038 1692306593463936523 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj 5ec2e96ed02a2eb9 -18669 19056 1692306552491390087 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj c3bc0c19a7dc0fb9 -5752 5987 1692306539419215760 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 515b6c0102600165 -19563 20037 1692306553471403156 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj dc08608c7c9c48f -7288 7584 1692306541019237097 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 8ac2fbb439faf17 -4186 4345 1692306537779193889 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 973b5c7988d342d0 -58498 58834 1692306592259920465 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj 36a79c0a855e3fae -17891 18060 1692306551495376804 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj c63bd43a5a10bc43 -8201 8368 1692306541803247552 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj 30cd2d71d8e86873 -2252 2633 1692306536067171059 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj 577b84ba0c89da94 -56077 56652 1692306590083891443 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj 7db2dc596c9bdfd9 -64308 64695 1692306598127998730 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj 444d79ff3e7a2e99 -25187 25846 1692306559279480614 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj 63881a983b38028c -23168 23606 1692306557039450740 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj 5e0f6d130375f812 -9995 10528 1692306543963276357 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj d1e80b4670f03f5a -6505 6675 1692306540111224988 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj c62218170ac12ba6 -48559 48686 1692306582111785118 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj b221a1ff9ee0f194 -30541 31487 1692306564919555831 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj 7c7850eb1cb29294 -36242 37904 1692306571331641346 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj 3647b217b4c1ead3 -1306 1553 1692306534987156656 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj 2c69af21d151921f -7203 7332 1692306540767233737 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch d39302137e18d517 -41496 41789 1692306575211693093 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj f773f57bbdb2a6a3 -1157 1456 1692306534891155376 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj 17f05a7ab3e3fa9 -9758 9995 1692306543427269210 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj cc1de73e6b4f6b09 -24888 27006 1692306560439496084 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj 503321a4d7064a7b -56954 57281 1692306590711899819 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj b04dd61b3ac510e9 -43042 43681 1692306577111718433 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj b3aee9b4bc0b0095 -4298 4460 1692306537879195223 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 432445cecb9ca699 -57 192 1692306533627138520 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj 7307e3b4559bd0e3 -58724 59092 1692306592523923986 esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp32/esp_adc_cal.c.obj f05b0518b59d012b -430 682 1692306534115145028 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj 37e82dabbaa5470f -12577 12740 1692306546175305856 esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj 235514c1d54bfeed -67642 68850 1692306602272054001 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj c397965c818c6e6c -6805 6921 1692306540347228135 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 75ab04782dc6cc53 -37 56 1692306533491136707 esp-idf/esp_system/ld/memory.ld 52050a1b066cc322 -15119 15355 1692306548767340423 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj b6d6ed775ff8be4e -57413 58449 1692306591875915344 esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj 3be94615deb7c816 -51123 52108 1692306585535830785 esp-idf/driver/CMakeFiles/__idf_driver.dir/adc_single.c.obj 804f0f6b0171e254 -49347 51110 1692306584531817394 esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj 91697cc76e435ba1 -1916 2049 1692306535483163271 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mps_reader.c.obj 7143116ef3b84284 -52381 54352 1692306587755860393 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj 80f3d964b03b0b02 -36 70 1692306533491136707 project_elf_src_esp32.c aefaed129c824ff9 -58834 59730 1692306593159932469 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj 79730046cfde55af -68634 69131 1692306602564057896 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj cb16d4dfda1f38f5 -40090 40509 1692306573939676128 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj 6bf16a5f807023fa -57541 57624 1692306591055904407 esp-idf/unity/libunity.a d86628c3f910c473 -14185 14324 1692306547759326981 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj d0849702c33a246e -7858 8143 1692306541575244512 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj 1a768c67a6eaf7c9 -12261 12562 1692306545995303456 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj 729e5e063cc48114 -16011 16251 1692306549683352639 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj ec3eb8611223fa0 -979 1091 1692306534523150468 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj 818ed13ec32af456 -64410 64653 1692306598083998143 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj d1f08f6d6b4bf466 -37 56 1692306533491136707 /home/igor/esp/experiment-ci-cd/build/esp-idf/esp_system/ld/memory.ld 52050a1b066cc322 -71 511 1692306533943142734 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj dcc0cfaef8ba855c -14140 14269 1692306547703326234 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj 11bb6c3cc7bfd856 -8660 8895 1692306542327254540 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj 697b1ede712863f0 -42584 43042 1692306576471709897 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj f63ed1c3de6d93d4 -20038 20855 1692306554259413666 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj 7f69ee3faa4ac755 -38592 39099 1692306572527657296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj 68f45701979de561 -36420 36832 1692306570259627049 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj 53b02701f795d5c1 -42880 43126 1692306576555711018 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj 2be4156a9d9608f9 -10134 10543 1692306543967276411 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt.c.obj c6aaf9c59f8bea5b -18129 18366 1692306551799380858 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj be5216dec5549a4c -27237 27590 1692306561019503819 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj d2b9c99a12a7d42 -60481 60896 1692306594327948047 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj 5b5013c2a1c5889e -8566 8843 1692306542275253846 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj e43c09ee90220ebe -42838 43630 1692306577059717739 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj cf20c9effb088fe7 -4062 4223 1692306537655192236 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ssl_debug_helpers_generated.c.obj ad82be45d1e76ce0 -2509 3130 1692306536563177673 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj abc032da890d12fa -53659 54874 1692306588303867702 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj f8097331f17a7735 -47453 47509 1692306580939769487 esp-idf/heap/libheap.a 7046e9de83abe74e -53986 55242 1692306588655872397 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj f4e64f57f449c049 -40980 41495 1692306574927689305 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj 2ffe760ff1608e57 -549 1183 1692306534615151696 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj 8dc151d3a6620fa5 -11980 12057 1692306545487296681 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal_iram.c.obj 6d3c9a4732dd185c -17585 18129 1692306551563377711 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj dce9aee1b8825344 -52590 53659 1692306587083851431 esp-idf/driver/CMakeFiles/__idf_driver.dir/pulse_cnt.c.obj 81f162d444a6f634 -206 4742 0 /home/igor/esp/experiment-ci-cd/build/CMakeFiles/flash eb0b64d38518b230 -56145 56465 1692306589895888935 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj 65359a67ffad4ac0 -58449 59303 1692306592727926706 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj cdb8be092c1e5caf -45535 45765 1692306579195746227 esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_common.c.obj 540dcf58acd3533d -43247 43355 1692306576783714058 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj 1924ba5f90c06203 -50875 51594 1692306585023823956 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_bus_lock.c.obj 6d551988eeb7046 -56571 56958 1692306590375895337 esp-idf/driver/libdriver.a 2c8dc5d10902342c -62846 63243 1692306596675979364 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj bd753a95f6ab0353 -67590 67719 1692306601152039063 esp-idf/mqtt/libmqtt.a 6e17d824151d8c88 -4345 4490 1692306537923195809 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_hardware.c.obj 6daa4b293af60966 -42899 43247 1692306576675712618 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj 9e6e8198768f292e -11430 11743 1692306545175292520 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj 18d5874c4a3a394b -2935 3353 1692306536787180661 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj fb0cf5edd9283a95 -69557 69896 1692306603328068086 esp-idf/dht/CMakeFiles/__idf_dht.dir/dht.c.obj a2a72a16e689de0f -48766 49114 1692306582543790880 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 1a28fcc2270fb43f -60253 60742 1692306594171945966 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj 93f05791c2c2f419 -45765 45892 1692306579323747935 esp-idf/ulp/libulp.a e841bd1137242d34 -56652 56959 1692306590387895497 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj e820ecfaf53daa3e -55 147 1692306550007356960 bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -10895 10956 1692306544391282065 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj 8d2ee4fa5b7fa116 -55 147 1692306550007356960 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.bin 546f90292dc26503 -5009 5149 1692374522769476731 .bin_timestamp 4c7337a5034d9186 -66723 67145 1692306600576031381 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj 866eeaa25d90e0c7 -37478 38380 1692306571811647747 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj 2073c17ef2aa0f82 -57178 57293 1692306590719899925 esp-idf/xtensa/libxtensa.a ff6d11f9c16cd236 -15752 15902 1692306549335347998 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_pm.c.obj 1e7dea7a64665b7 -64653 65363 1692306598792007586 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj d71eea2ba1c5bb70 -55734 56144 1692306589575884667 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj f10938dc9ca0f5c8 -59730 59824 1692306593255933749 esp-idf/esp_hid/libesp_hid.a 4488ce97b5f81d1a -56958 57092 1692306590495896938 esp-idf/efuse/libefuse.a d0191ece836d243c -57092 57177 1692306590591898218 esp-idf/esp_ringbuf/libesp_ringbuf.a 58d8062f1f212d02 -12191 12577 1692306545995303456 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj c02455b1f83b5230 -56724 56954 1692306590383895444 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj 2bbb5419be96dac0 -46888 46981 1692306580411762445 esp-idf/esp_eth/libesp_eth.a 3a0d86aad7554ab5 -49294 50874 1692306584299814300 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj d6976bba1714f99f -57720 57974 1692306591379908728 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj 1a85a10d89ef68ea -52108 52590 1692306586019837239 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj 9ce1087806f5280e -46460 46492 1692306579923755937 esp-idf/http_parser/libhttp_parser.a 6fda40509e51bbec -12052 12191 1692306545623298495 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj c972852d9dc1ab86 -5884 6211 1692306539631218587 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj ba48678273ad3f58 -53911 56314 1692306589723886641 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj d938d94540aff8f -44958 45287 1692306578719739879 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj 62c72a1c111ced47 -57532 57965 1692306591387908835 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj e62e073f1aa71f0b -59092 59176 1692306592607925106 esp-idf/esp_adc_cal/libesp_adc_cal.a 240de62455b5c934 -5988 6839 1692306540247226802 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj 1a1f975223ed99e -47509 47545 1692306580975769967 esp-idf/log/liblog.a c13671c9a0d3adce -8004 8211 1692306541643245418 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj aa8d02edc3220f48 -58113 58605 1692306592031917424 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj ad6c19cd4a220991 -42537 42899 1692306576327707977 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj ce843f00b6df6cb7 -15144 15481 1692306548915342397 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj 9414f0dd31026e54 -15471 15592 1692306549027343891 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mac_bb.c.obj e35b057a84319ad2 -14840 15272 1692306548699339516 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_async_memcpy.c.obj 74496ad4a2c5bdbc -14130 14212 1692306547647325487 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 1a2cb74374d48b2a -40231 40672 1692306574103678316 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj ed6008cf592d1e0d -60038 61111 1692306594531950768 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2s.c.obj 6b4e7deeed6ee4c -15935 16178 1692306549607351626 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj b830476b5d628699 -60348 60627 1692306594059944473 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj 9ab62976148d0c70 -56 361 1692306533795140760 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj 98ed808e1321f094 -29880 31502 1692306564919555831 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj 8fc458332e81ae00 -16396 16483 1692306549915355733 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.obj 540f714ad69c52e4 -36504 37577 1692306571003636971 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj 5569d709e92c04d0 -70401 70459 1692306603888075556 esp-idf/asio/libasio.a 546e956b766aaeb1 -9213 9756 1692306543187266009 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj 92b7db939740d9f2 -7332 16573 1692306550007356960 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure 416b45a83c4efa25 -44906 45534 1692306578963743133 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj fe3d831ed669c28b -16358 16639 1692306550071357813 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj ce8cc96b59a00b64 -16483 16693 1692306550079357920 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj 424b41f09aa9ea39 -29913 30541 1692306563975543241 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj 14781e1a73bd6a0f -31223 31652 1692306565087558072 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj 7733b4f4f8d5f76a -4377 4627 1692306538059197623 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_mem.c.obj 1ad08eab3404b45 -11398 11617 1692306545051290867 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj e7b29556c9724c -16640 16936 1692306550367361761 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj 13311efc9f26f7b8 -64017 64590 1692306598019997290 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj 10b59c9d365c2e5e -48706 49186 1692306582615791840 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj c4330ae69b6d2c9e -32029 32662 1692306566095571515 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj 153d9db276ffdb11 -41455 41827 1692306575255693680 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj f7a2bb69b0a0af1e -15728 15983 1692306549399348852 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj fb2dc6074e6bdc0f -65272 66580 1692306600008023805 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj ec31abce0dd35dbf -3130 3447 1692306536879181887 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj 9cdfc09c9fd7129c -7506 7803 1692306541235239977 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj cb661168f5d659d0 -169 4353 1692374521917464491 /home/igor/esp/experiment-ci-cd/build/esp-idf/esp_system/ld/sections.ld e113c5f48bbea92e -17525 17980 1692306551415375737 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj 7b167f26dd100654 -1099 1491 1692306534923155803 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj 31b4b6ac92c7e6fb -17980 18268 1692306551703379578 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj 20c2c8bee54456a2 -18000 18342 1692306551763380378 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj eea8fda4b1cc1f82 -41197 41533 1692306574963689785 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj 4500c34c6cb39180 -66581 66722 1692306600152025726 esp-idf/json/libjson.a 19e88c0993a3e501 -17609 17999 1692306551431375951 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj e6b5a3f561db0807 -27116 28134 1692306561567511127 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj 391d9b332ad0a86a -19056 19826 1692306553255400276 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 25d6e930215ae44a -19683 19993 1692306553427402570 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj 21b4ade97f050327 -20064 20506 1692306553939409398 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj 303bb3b5c5c12c64 -20506 20919 1692306554351414892 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj b16ec717422cf70a -44458 44949 1692306578379735344 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj a3ff06ca0c895de1 -22747 23135 1692306556567444446 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ksz80xx.c.obj 52397e229235ab57 -25846 27115 1692306560551497577 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj 1e2f4a61b08e1283 -36263 36908 1692306570335628062 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj 77655e7857af7a8a -22882 23345 1692306556779447273 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj b76e76358282838f -3702 4623 1692306538055197570 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj b4ceea2fe8a8bc1e -15237 15568 1692306548999343518 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj e2859d013c04fcf2 -6676 6885 1692306540319227762 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/igor/esp/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj 34f34cc33fbcba2b -46213 46251 1692306579683752736 esp-idf/esp_https_ota/libesp_https_ota.a e8c21c1295ccd4e1 -16156 16594 1692306550027357227 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj d7d3823ee1354f94 -30383 31820 1692306565251560259 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj e99471133e441c8a -6737 7288 1692306540723233150 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/igor/esp/esp-idf/components/mbedtls/port/net_sockets.c.obj 62449cae1ca4497e -33212 33883 1692306567315587785 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj 22c8b3f83d4f1fef -55 147 1692306550007356960 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -21541 21805 1692306555239426735 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj b705b054efb7bcec -4548 4768 1692306538195199437 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj 287f0571b835a2ac -1217 2933 1692306536363175006 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj 5a5398c287f8d6bd -20919 23168 1692306556595444819 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj 9d4a63a0837dbc2a -47398 47452 1692306580883768740 esp-idf/soc/libsoc.a 4430bce9f7c72887 -13040 13684 1692306547115318392 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj 702898afa6994671 -58477 58724 1692306592155919077 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj 1ec280bd3d175702 -19186 19682 1692306553115398409 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj cb668fbce359a567 -2974 3249 1692306536683179274 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj eeea55b29e2e348 -147 161 0 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 -40509 40918 1692306574347681570 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj 32de4bb54fe33c68 -64253 64410 1692306597843994942 esp-idf/wear_levelling/libwear_levelling.a b346399e8539f527 -63941 64391 1692306597823994675 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj 4f9d7f41ff6931a5 -34302 34738 1692306568167599148 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj 6cf399fc51ea52b0 -6211 7506 1692306540935235977 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj f8d0d41b3e4c5bf8 -161 206 1692374531781605899 CMakeFiles/bootloader-complete 50d824e63b5d6e74 -34563 35116 1692306568547604216 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj 2684eb25bbf4c675 -34950 35251 1692306568675605923 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj e2c81c0e4945cc8 -58169 58477 1692306591907915770 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj b1838f2808fdc75f -161 206 1692374531781605899 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 -35442 36264 1692306569691619474 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj d3ba8580cd7b7a6 -23346 25789 1692306559219479814 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj bf904d233a1837b2 -12371 12586 1692306546011303669 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj e274ae4d88680101 -24947 27236 1692306560671499178 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj f20992f44f384303 -32562 33952 1692306567379588639 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2.c.obj 8f462770c026ebad -62063 62460 1692306595891968906 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj e5e5fcbe42384ff8 -39750 40133 1692306573563671113 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj 480bed75a3daeec0 -37904 38592 1692306572019650521 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj a0169ea520ad0138 -13685 14154 1692306547587324687 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj 1bf9e8a2534d70ae -29846 30405 1692306563831541321 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj fda1d67216307588 -62016 62529 1692306595959969814 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj 68a6cca31a853cbb -28019 28273 1692306561703512941 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj a0f63a6f1df30b88 -16179 16290 1692306549723353173 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj 33263cc138e5a821 -32145 32761 1692306566195572849 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj c55f2ed2ab488052 -25545 26332 1692306559767487122 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj 94274b3045d0e6a3 -35801 36192 1692306569623618566 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj 52a2616f90a351b1 -15272 16010 1692306549443349439 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj d9dd3ad74d366cb6 -29528 29913 1692306563347534866 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj 7a5bdea9d82a72c1 -44473 44957 1692306578387735451 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj e55ad98db35affab -13479 13627 1692306547059317645 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 70112133eaa41b31 -62495 62614 1692306596039970881 esp-idf/protobuf-c/libprotobuf-c.a 22c3c036860d988 -28534 28853 1692306562287520730 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj 340b057ebda50f35 -51698 52372 1692306585803834359 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/sigmadelta_gpio.c.obj 79d0cccbcdbeae43 -14269 14347 1692306547783327300 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj 7b4bd75e74b7bbf6 -18061 18323 1692306551759380325 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj 2a427f723d3adab9 -44949 45439 1692306578867741853 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj d90013605d048bc0 -47176 47217 1692306580647765593 esp-idf/cxx/libcxx.a 808541fa7b4c0900 -33993 34950 1692306568379601976 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj a3a3689ce26b4efd -7372 7539 1692306540975236510 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj c8fc525242e8e733 -29563 29845 1692306563279533959 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj b4b839df1ee2d784 -66138 66315 1692306599748020337 esp-idf/mdns/libmdns.a 53a0d0c344331d2 -35820 36242 1692306569671619207 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj cb687dd1b11144f -66248 66975 1692306600404029087 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj a744778b77d39b6e -34953 35796 1692306569223613232 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj 4b94f3323fdbd5ee -56465 70399 1692306603784074168 esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj 85eb7cdfbefe0b99 -38471 38935 1692306572367655162 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj dc62643ac86acd92 -35974 36504 1692306569935622727 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj 43cf6158462e23d7 -34932 35418 1692306568839608111 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj fb5367272b02a129 -62461 62705 1692306596135972162 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj b5cea515cf00098d -21962 22747 1692306556175439217 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp.c.obj 723fa5c4caad46db -62258 62846 1692306596275974029 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj 7ff5a9ca2303706d -29647 30560 1692306563991543455 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj 3550677031036d42 -27165 27579 1692306561011503712 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj 907bf307fae6204c -40672 41117 1692306574539684130 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj a7b3a2893c87dfe3 -39781 40231 1692306573659672394 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj 5ba47d993059d7f2 -16454 16742 1692306550175359200 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_common.c.obj 601a78a7344f1fa0 -36265 36900 1692306570331628009 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj cf6fb185836496 -49186 49938 1692306583367801870 esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer.c.obj a9879fdf09288a1e -41780 42087 1692306575519697200 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj b1cc3aed5e4750d -34434 34705 1692306568135598721 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj 78712213c6881544 -26368 26610 1692306560031490642 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj f16b0ed24ae7b988 -42401 42879 1692306576311707763 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj 604877272fba51ad -41827 42348 1692306575779700668 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/lwip_default_hooks.c.obj 7d8c3f565f3e7236 -12199 12389 1692306545823301162 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj 361bfb03cabfcda5 -37765 39500 1692306572911662418 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj cc58fb68d2b9d127 -38479 39546 1692306572959663058 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj 918c4c0b6d412e28 -16936 17270 1692306550687366028 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj 7302ace1127a572 -63751 64308 1692306597739993555 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj f79b1d59c10937b3 -66975 67170 1692306600596031647 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj eb730cc68b997d21 -27590 28018 1692306561451509580 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj df6eb4532febb5d7 -55 124 0 /home/igor/esp/experiment-ci-cd/build/esp-idf/esptool_py/CMakeFiles/app_check_size 8f6ea7f45b5fb72c -17469 17890 1692306551323374510 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj f1c1add9e12d844 -47217 47260 1692306580691766179 esp-idf/newlib/libnewlib.a ab8ca8b7e0d6800f -4710 4988 1692306538423202477 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp32/bignum.c.obj c68f53378038f556 -10956 11211 1692306544647285479 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj 578d8594e8cbee6e -39491 39693 1692306573111665085 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj c6b0de3a0936107b -161 206 1692374531781605899 bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 -11743 11927 1692306545359294975 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj 2d6190f5f0a5956a -68805 69403 1692306602832061471 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj 567ec062f9d41242 -56960 57159 1692306590591898218 esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj 84de99c05de2e9d7 -37509 37765 1692306571195639532 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj b66da379f5a25310 -6921 7025 1692306540459229629 bootloader-prefix/src/bootloader-stamp/bootloader-download b836621c4df76d7f -17293 17585 1692306551019370456 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj b01cb4238bde3de8 -58829 59242 1692306592671925960 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj fe6e47761d5ae6be -47909 47996 1692306581423775942 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a fc3db66d485b8741 -28273 28654 1692306562087518062 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj 5a30c37588a64802 -14347 14531 1692306547963329701 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj 12638874845cc4f5 -18913 19562 1692306552995396808 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj 31548d2fa3f894b7 -12563 12977 1692306546411309004 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj a5f96b450d9367da -19768 21540 1692306554967423107 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj 84569272f90f5c5d -50269 51697 1692306585119825236 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj 2838c1a173f3e448 -36832 37224 1692306570655632330 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj 93729eabf2e79a1a -19994 21962 1692306555395428815 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj 1ed0f3200cf40e23 -51110 52339 1692306585763833825 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj 7ea248531f66a69f -68219 68805 1692306602236053522 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj 7758dd6880d9f3ab -47077 47125 1692306580555764366 esp-idf/esp_timer/libesp_timer.a fb0a664a3f077bf -40963 41376 1692306574807687705 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj 24ca7fca9f48c6d2 -48625 48969 1692306582399788959 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj e6d76fbc5f0811dc -33297 34433 1692306567863595094 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj b6dfb3f2308af72a -55963 56076 1692306589507883760 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj 3dacb5fd13cd204e -41193 41409 1692306574839688131 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj 3f6381593768fed3 -14896 15237 1692306548671339143 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj 77f1577817fce6a3 -30406 31222 1692306564655552311 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj 95d3a539a4f4de54 -39501 39808 1692306573239666793 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj d4117d7ef985b631 -55242 55734 1692306589163879172 esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/adc.c.obj df4f709ff6c2c91e -35419 35838 1692306569267613818 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj 8af1fb76479ac218 -5671 5884 1692306539319214426 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj b629cdfd5e26ad2 -40774 40980 1692306574407682370 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj 578fe8fedb07cf37 -7332 16573 1692306550007356960 bootloader-prefix/src/bootloader-stamp/bootloader-configure 416b45a83c4efa25 -23415 25545 1692306558975476559 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj a6893ea2070c4e07 -40588 40963 1692306574395682210 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj 20fd87723f46d48b -66471 67180 1692306600612031861 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj bb423750da702612 -39546 39865 1692306573295667539 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj 81517eb316acb4d2 -39368 39675 1692306573103664979 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj 69420f8a6ea8be65 -40354 40587 1692306574019677195 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj 14a574ff4b947863 -38936 39491 1692306572919662524 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj 9693d200b069019f -10753 10911 1692306544343281425 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj 70eb2ca6e2d4162b -23606 24887 1692306558319467811 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj 8ea667a1926c12a2 -28982 29526 1692306562959529692 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj 2cbcffa57f966ae0 -8368 8560 1692306541995250112 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj b06fc66eab1f2e8f -34679 35440 1692306568863608430 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj 8956e2aa8b2207c5 -27007 27412 1692306560847501525 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj b31c14e2d6756ed1 -3646 3964 1692306537395188768 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj 111a759d913cb1b3 -35440 36262 1692306569687619420 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj ee846ef4115aa894 -47594 47620 1692306581051770981 esp-idf/esp_rom/libesp_rom.a a42c1cd3ad26edc7 -11205 11280 1692306544715286386 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj dd76520b50f5297f -39178 39367 1692306572799660924 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj 44c6b4b4ce944bbb -29309 29880 1692306563311534386 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj 6351c4c7f12a5ef -1238 1443 1692306534875155162 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj e46f420915433891 -32762 33149 1692306566579577971 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj b75c17fe3a261d67 -56 68 1692899888273379059 esp-idf/esp_system/ld/memory.ld 52050a1b066cc322 -56 68 1692899888273379059 /home/igor/esp/experiment-ci-cd/build/esp-idf/esp_system/ld/memory.ld 52050a1b066cc322 -56 78 1692899888281379158 project_elf_src_esp32.c aefaed129c824ff9 -56 78 1692899888281379158 /home/igor/esp/experiment-ci-cd/build/project_elf_src_esp32.c aefaed129c824ff9 -69 191 1692899888397380581 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj 7307e3b4559bd0e3 -56 304 1692899888333379796 partition_table/partition-table.bin e74d74eaeb420b13 -56 304 1692899888333379796 /home/igor/esp/experiment-ci-cd/build/partition_table/partition-table.bin e74d74eaeb420b13 -75 371 1692899888577382790 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj cb67609f03a46a4b -69 382 1692899888585382887 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj 98ed808e1321f094 -78 391 1692899888597383035 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj dcc0cfaef8ba855c -372 457 1692899888661383820 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj 37e82dabbaa5470f -191 477 1692899888681384066 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj ef1489f64e0a59ed -391 541 1692899888745384851 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj baf542f2b9f13343 -457 577 1692899888781385293 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj ed350a1569206d36 -71 602 1692899888801385538 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj 251b3a4de012a6a9 -541 743 1692899888949387354 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj 1b47248abd61aeea -383 753 1692899888957387452 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj a793110c2f5f43a0 -577 896 1692899889101389220 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj 6e598b5c2e90d27c -753 908 1692899889101389220 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj 818ed13ec32af456 -602 949 1692899889153389858 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj 8bed98b3501f8b14 -477 967 1692899889173390103 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj 8dc151d3a6620fa5 -896 1025 1692899889229390790 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj 8111f09a7e577e88 -967 1049 1692899889253391085 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj 97f56a908b1eb7f6 -743 1110 1692899889301391674 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 59d208926061e7df -949 1227 1692899889421393147 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj 17f05a7ab3e3fa9 -908 1250 1692899889453393539 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj 31b4b6ac92c7e6fb -1227 1379 1692899889585395159 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj 2c69af21d151921f -305 1550 1692899889749397172 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj 8741009d52c19afb -1250 1590 1692899889793397712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj 974c150536142650 -1110 1606 1692899889809397908 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj e46f420915433891 -1550 1687 1692899889893398939 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj 5f0caeb934bcc8ee -1379 1829 1692899890033400657 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj 12ae550bbb07b983 -1606 1895 1692899890101401491 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 3f5f8b3fc4603d0b -1687 1896 1692899890101401491 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj 8f92dcf0d1eebe20 -1829 1970 1692899890177402424 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj ca4af85425b811cb -1590 1988 1692899890193402620 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj 1f5f1528c05b070f -1895 2024 1692899890229403062 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mps_reader.c.obj 7143116ef3b84284 -1897 2033 1692899890237403160 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mps_trace.c.obj bf767a4e94e8f777 -1970 2063 1692899890269403553 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj e351594fb2fad16c -2024 2114 1692899890317404142 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj 1b6bfa6174df8fc2 -1025 2178 1692899890369404781 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj 5a5398c287f8d6bd -1049 2342 1692899890541406891 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj d3506bdec0cc1110 -2063 2372 1692899890577407333 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj 577b84ba0c89da94 -2114 2374 1692899890577407333 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj fca6889f109e6c10 -2033 2453 1692899890657408315 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj d20a37f48fd56f2a -1988 2456 1692899890661408364 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj e8d3f5fc367d3ba2 -2178 2553 1692899890757409542 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj 85d774e2238a77cf -2453 2643 1692899890849410671 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj dc5ad0137a8b3253 -2342 2667 1692899890873410965 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 5631dd8fe9507815 -2456 2696 1692899890901411309 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj efb88c26dcf264d7 -2553 2707 1692899890913411457 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj b43a8098ad65a828 -2374 2808 1692899891009412634 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj 38743e3bbd75d72d -2707 3011 1692899891217415187 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj eeea55b29e2e348 -2697 3155 1692899891357416906 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj 977e0557e7820619 -2667 3182 1692899891385417249 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj fb0cf5edd9283a95 -2372 3231 1692899891433417839 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj abc032da890d12fa -2808 3328 1692899891533419065 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers.c.obj 9a9170ac41d3e60c -3329 3499 1692899891705421177 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj 248a6fb516089fe2 -3011 3514 1692899891709421226 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj 9cdfc09c9fd7129c -3155 3545 1692899891749421716 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj dc33929c230745b3 -3182 3758 1692899891961424319 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj eeddb740db185656 -3231 3792 1692899891997424760 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj fdb528a09bf9f528 -3758 3850 1692899892053425447 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj 6dde04f6c5c03663 -3514 3857 1692899892057425496 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj e27579f4221dfdd0 -3499 3869 1692899892073425693 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj 4f397628cbff4e2b -3545 3881 1692899892085425840 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj 111a759d913cb1b3 -3869 4033 1692899892237427706 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj f8e69e089c47acc3 -3857 4055 1692899892257427951 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj 9e9401b70239a1c2 -3850 4147 1692899892353429130 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj 911ebc1de129bebb -3881 4175 1692899892381429473 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj cba107ac6d01cbfd -4033 4198 1692899892405429768 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ssl_debug_helpers_generated.c.obj ad82be45d1e76ce0 -4055 4216 1692899892405429768 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 973b5c7988d342d0 -4147 4233 1692899892429430062 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj 8525662c2b8bd195 -4175 4381 1692899892585431977 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj 9adec72847ffe547 -4198 4396 1692899892601432174 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 432445cecb9ca699 -4217 4408 1692899892613432321 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_hardware.c.obj 6daa4b293af60966 -4233 4417 1692899892621432419 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_mem.c.obj 1ad08eab3404b45 -4397 4538 1692899892741433892 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj 20c40af05b1cf98a -4381 4575 1692899892781434382 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_timing.c.obj f8d718bff4aa006 -4418 4666 1692899892873435512 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj 287f0571b835a2ac -4408 4726 1692899892929436199 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj a2a6e11aa884fc3 -2643 4813 1692899893001437083 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj 22e152b24d5e5bd4 -3792 4909 1692899893109438409 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj b4ceea2fe8a8bc1e -4575 4916 1692899893121438555 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj c38e3fd4b8173223 -4726 5008 1692899893213439685 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp32/bignum.c.obj c68f53378038f556 -4538 5055 1692899893261440274 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/aes/block/esp_aes.c.obj b337f7b092da2664 -4666 5096 1692899893297440716 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_bignum.c.obj 670ee5380b7c4442 -5009 5159 1692899893365441551 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/md/esp_md.c.obj 472469257bb4ae66 -4813 5433 1692899893637444889 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha1.c.obj 199b48c218c71a99 -5096 5466 1692899893673445331 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj 753f81f28e2f469f -5055 5555 1692899893757446362 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj d2623d10143fb87f -4909 5567 1692899893769446509 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha256.c.obj febf2a88e2791f5d -4916 5727 1692899893929448473 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha512.c.obj 81619445f0b9facf -5159 5741 1692899893945448669 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj a6a894268b9c1892 -5466 5755 1692899893953448768 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj e5dc330b10e40b9d -5727 5814 1692899894013449504 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj b629cdfd5e26ad2 -5568 5843 1692899894045449897 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj 5fcd1bc575cf08a8 -5555 5870 1692899894073450241 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj 79850bdd284d3bed -5757 6006 1692899894205451861 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 515b6c0102600165 -5742 6191 1692899894393454169 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 3c256ff34a8bb7e5 -5843 6246 1692899894445454807 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj ba48678273ad3f58 -6191 6646 1692899894849459766 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj f5b24e2cb6ad9792 -5434 6658 1692899894853459815 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj e9b11a32c120c286 -6647 6770 1692899894969461239 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj 6aa6171f5711e50d -6658 6790 1692899894989461485 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj a8fba002ee6f86b6 -5871 6916 1692899895113463007 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj 1a1f975223ed99e -6790 6919 1692899895117463056 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj 7b07c998cd53c612 -5814 6923 1692899895121463105 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj d1708d322ceed5cd -6771 6991 1692899895193463989 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj c62218170ac12ba6 -6006 7023 1692899895217464284 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj 1a588e6fa85e02ce -6923 7064 1692899895257464774 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 75ab04782dc6cc53 -6923 7064 1692899895257464774 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 75ab04782dc6cc53 -6916 7072 1692899895273464971 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/igor/esp/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj 34f34cc33fbcba2b -7065 7208 1692899895409466640 bootloader-prefix/src/bootloader-stamp/bootloader-download b836621c4df76d7f -7065 7208 1692899895409466640 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-download b836621c4df76d7f -7023 7247 1692899895449467131 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj 30124bb00501d148 -7209 7283 1692899895485467573 bootloader-prefix/src/bootloader-stamp/bootloader-update 682598f9e9ba3671 -7209 7283 1692899895485467573 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-update 682598f9e9ba3671 -7284 7470 1692899895661469734 bootloader-prefix/src/bootloader-stamp/bootloader-patch d39302137e18d517 -7284 7470 1692899895661469734 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch d39302137e18d517 -6919 7595 1692899895797471403 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/igor/esp/esp-idf/components/mbedtls/port/net_sockets.c.obj 62449cae1ca4497e -7247 7675 1692899895877472385 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b1c2bf2fd14fc65b -7072 7699 1692899895901472680 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 9b1a9bc11db84574 -7699 7916 1692899896117475331 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj c8fc525242e8e733 -7595 7980 1692899896181476118 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 8ac2fbb439faf17 -6991 7996 1692899896185476166 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj 644a379160797eca -6246 8014 1692899896201476362 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj f8d0d41b3e4c5bf8 -7916 8260 1692899896461479554 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 6b419ff319ac40b1 -7675 8290 1692899896489479898 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b2da227d782da917 -7980 8435 1692899896637481715 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj cb661168f5d659d0 -8260 8504 1692899896705482549 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 5780df8b3122ac9b -8290 8537 1692899896737482942 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 7d4eb607a1ae419e -8435 8658 1692899896861484464 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 219dc7b6e8b88053 -8015 8708 1692899896909485054 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 543ec37936cc63cc -8504 8762 1692899896965485741 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 78c2f4669e425f73 -7996 8777 1692899896969485790 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj ac73403eec5b8a46 -8708 8840 1692899897041486674 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj aa8d02edc3220f48 -8840 8927 1692899897129487754 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj 8cbb0dd0e9dfb3d6 -8658 8935 1692899897137487852 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 83afeda68e41e886 -8538 8946 1692899897149488000 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj 1a768c67a6eaf7c9 -8778 9053 1692899897253489277 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition_target.c.obj e6bc6029fe2efee -8927 9071 1692899897273489522 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj 30cd2d71d8e86873 -8947 9086 1692899897285489669 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 727ebec46bbf85ae -8762 9138 1692899897337490308 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj 3a5789c4c34502ee -9053 9232 1692899897433491486 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj b06fc66eab1f2e8f -9071 9302 1692899897501492321 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj c3ac9bda18bbf9f3 -9138 9342 1692899897541492812 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj 552b615caef1301e -9086 9362 1692899897565493107 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj dd3a0ab25f01bc3d -8935 9437 1692899897637493991 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj 13018eb731ac05c -9302 9527 1692899897729495120 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj 40db34470a2ff0a5 -9232 9655 1692899897857496692 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj e0adf6fa31cda68d -9342 9768 1692899897969498067 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj e43c09ee90220ebe -9655 9820 1692899898021498705 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/flash_ops_esp32.c.obj 1149273985103764 -9363 9833 1692899898029498803 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj 697b1ede712863f0 -9527 9836 1692899898037498901 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj f8fbaa622850e0a1 -9437 9970 1692899898165500473 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj fe30fd6226ac5a3b -9836 9986 1692899898169500522 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj f305003bead6f11f -9833 10186 1692899898385503174 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj 3724998cc1739411 -9820 10258 1692899898457504058 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj 5e783fe423c6eee9 -9987 10303 1692899898505504647 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj b28d2601a435ae36 -10303 10414 1692899898613505973 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 8c6a2fe9fdede08 -9768 10466 1692899898665506611 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj 74f5b47377b3938c -10258 10480 1692899898677506759 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj 2fcd644d54a9f55f -10186 10514 1692899898717507250 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj b548d73014eabb8d -9970 10582 1692899898781508035 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj 92b7db939740d9f2 -10414 10633 1692899898833508674 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj 89efcb5ea7932188 -10481 10728 1692899898929509853 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj cc1de73e6b4f6b09 -10466 10795 1692899898997510687 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj 50dc4ebd5655286d -10515 10897 1692899899097511915 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj e088e5258bd2724e -10633 11014 1692899899217513388 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj 9fb04fae07260dee -10583 11041 1692899899241513683 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj 5d5c13974cf53202 -10796 11053 1692899899253513830 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj 33e84bd328ec3459 -10897 11059 1692899899261513929 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj 2df9bd931afb6ee5 -11059 11214 1692899899417515844 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj 8f5c5c322bf2d012 -11041 11222 1692899899425515942 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj 2f49e38ed8019713 -11053 11249 1692899899449516237 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj ff2239ce3887c780 -10728 11284 1692899899485516679 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj d1e80b4670f03f5a -11284 11405 1692899899605518153 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj 77b0decede78db6a -11015 11425 1692899899625518397 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt.c.obj c6aaf9c59f8bea5b -11250 11446 1692899899649518692 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj 9f39fc8b95f3bb05 -11222 11491 1692899899693519232 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj e6f5b851d84388e2 -11214 11625 1692899899825520853 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj ec6620e3481ed2c6 -11426 11634 1692899899837521000 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj 6f1d882b48c6d67c -11491 11659 1692899899861521295 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj 70eb2ca6e2d4162b -11405 11682 1692899899881521541 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj 27c34396d2ac4f81 -11634 11728 1692899899929522130 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj 8d2ee4fa5b7fa116 -11685 11772 1692899899973522670 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj a5f5262d551ef546 -11446 11784 1692899899981522769 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj 7e30941ed3719b22 -11660 11825 1692899900025523309 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj c9ef13687a53587e -11625 11836 1692899900037523456 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj f7a2feda61be6dad -11772 11863 1692899900065523800 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj cc66870ecca757ec -11784 11897 1692899900097524192 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj a9e7f1723d8dcd80 -11729 11926 1692899900129524585 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj 578d8594e8cbee6e -11863 11938 1692899900141524733 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj 7c8720b5cabfc28 -11927 11961 1692899900161524978 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj dcc377f73d424271 -11826 11978 1692899900177525175 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj 6549dba6dacd1d44 -11897 11990 1692899900193525371 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj dd76520b50f5297f -11938 12016 1692899900217525666 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b790d6e24a245a52 -11990 12055 1692899900253526108 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tjpgd.c.obj 7273a5df4f20ffa7 -11837 12061 1692899900261526206 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr.c.obj 8661c4639a7bb67a -11961 12081 1692899900281526452 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 89f0cf946cdddef1 -12055 12099 1692899900301526698 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 1466ba805483f3b8 -12016 12108 1692899900309526796 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj 39403b40ee016ff -12061 12165 1692899900365527483 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 74343634cf8a9b33 -12081 12188 1692899900389527778 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj e7b29556c9724c -12108 12240 1692899900441528416 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj b936722bffedc1fe -12099 12339 1692899900537529595 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj 18d5874c4a3a394b -12165 12380 1692899900581530135 esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj 96f29e354c3e7bcf -11978 12403 1692899900605530430 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b6115b7542757934 -12240 12521 1692899900721531854 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj 9341f162ac5fcd3a -12188 12565 1692899900765532394 esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj d7a60b83aacc35b0 -12340 12598 1692899900801532836 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj 14454c13af00977f -12521 12606 1692899900809532935 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj d4b505e9291f8f40 -12380 12607 1692899900809532935 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj 2d6190f5f0a5956a -12404 12621 1692899900821533082 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj 4547865b01f236cd -12565 12654 1692899900857533524 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal_iram.c.obj 6d3c9a4732dd185c -12598 12722 1692899900925534359 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj b819ffd84ad6a909 -12606 12735 1692899900933534457 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj c972852d9dc1ab86 -12621 12764 1692899900965534850 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj d9acb8fd466d1b5 -12654 12885 1692899901085536323 esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj 6fc09cf7ddce0b4d -12608 12915 1692899901113536667 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj caadf5b6b0cc8d09 -12735 12925 1692899901125536815 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj 361bfb03cabfcda5 -12722 13033 1692899901229538092 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj c02455b1f83b5230 -12916 13041 1692899901241538239 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj e274ae4d88680101 -12764 13081 1692899901281538730 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj 729e5e063cc48114 -12925 13133 1692899901333539369 esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj 572dc3bf72a0f9d7 -12885 13186 1692899901385540007 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj 4de696e5e438d48 -13133 13276 1692899901477541137 esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj f98ebd0aade1d3a8 -13081 13295 1692899901497541382 esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj 235514c1d54bfeed -13033 13314 1692899901505541480 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj 752c800ba4ebca85 -13186 13395 1692899901597542610 esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj c853cc14a1ec203 -13276 13493 1692899901693543789 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj 234d2a841c7631ae -13295 13517 1692899901717544084 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj 45214a5c98264dab -13395 13524 1692899901721544133 esp-idf/hal/CMakeFiles/__idf_hal.dir/sigmadelta_hal.c.obj 927c4d13b076b1e8 -13041 13558 1692899901757544575 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj a5f96b450d9367da -13314 13683 1692899901881546098 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj f5b4521d4c9c1c40 -13517 13702 1692899901905546392 esp-idf/hal/CMakeFiles/__idf_hal.dir/dac_hal.c.obj 5dccb610994b6435 -13558 13827 1692899902029547915 esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj 389d5d69c0a57db6 -13683 13869 1692899902069548406 esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj bf6b1e4a96dbb35c -13702 13958 1692899902161549536 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/adc_hal.c.obj 2e7d4894a5b38660 -13827 13984 1692899902185549830 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/brownout_hal.c.obj 1dcb4d0e42d44f27 -13869 14090 1692899902289551107 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/touch_sensor_hal.c.obj 83b9bbdc465e6a0f -13958 14164 1692899902361551991 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/gpio_hal_workaround.c.obj ba4980771c855f57 -13524 14171 1692899902369552090 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj 702898afa6994671 -13493 14244 1692899902441552974 esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj e3d57c5cfd5c8faf -13984 14245 1692899902445553023 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj 67a46c286c1e667e -14090 14359 1692899902561554447 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 70112133eaa41b31 -14164 14493 1692899902693556068 esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj f18e33a8f0afb2da -14244 14599 1692899902801557395 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj 4a9d3339be738e6e -14171 14621 1692899902821557640 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj 16399c91729cf9d1 -14245 14627 1692899902829557738 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj 1bf9e8a2534d70ae -14493 14672 1692899902873558279 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj 45128d5c2a5ae937 -14621 14696 1692899902897558573 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 8a7fdcf4a8425da7 -14627 14711 1692899902909558721 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 1a2cb74374d48b2a -14599 14726 1692899902929558966 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj 38ab6c6e2a109f27 -14672 14778 1692899902977559555 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj 11bb6c3cc7bfd856 -14711 14793 1692899902993559752 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj d0849702c33a246e -14696 14807 1692899903009559949 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj 113b01e440d959dd -14726 14829 1692899903029560194 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj 1e2ca80be510e466 -14794 14858 1692899903057560538 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj 3ea6c929e90ab031 -14778 14886 1692899903085560882 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj 7b4bd75e74b7bbf6 -14807 14902 1692899903105561128 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj 191cf667ee0860f9 -14858 14937 1692899903137561521 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj 12638874845cc4f5 -14829 14941 1692899903141561570 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj c5a499d3bc002fae -14902 14999 1692899903201562307 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj c03502831f532c3d -14937 15015 1692899903209562405 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj 20e595009b8bde2 -14886 15017 1692899903217562503 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj 570719c920d26136 -14941 15031 1692899903233562700 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj 1c8cc56b36e78d24 -15031 15127 1692899903329563878 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj 6ca1093a3b710e20 -15018 15129 1692899903329563878 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sigmadelta_periph.c.obj b8e52adff763c702 -15015 15133 1692899903333563927 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj b4459892a8499bd7 -14359 15180 1692899903377564468 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_tlsf.c.obj 49278e1621099b4c -15000 15198 1692899903401564763 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj d2c44c9be61e50fa -15127 15249 1692899903449565352 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj 445221c69fed7df3 -15129 15271 1692899903473565647 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj 909a4e134f9c9b6c -15133 15274 1692899903473565647 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj 6618c967d6c77452 -15249 15350 1692899903549566580 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 36356e39d61a0988 -15180 15406 1692899903609567317 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/compare_set.c.obj 273048751aefc979 -15198 15417 1692899903617567415 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 31beb94b008e486c -15271 15574 1692899903773569331 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_async_memcpy.c.obj 74496ad4a2c5bdbc -15274 15592 1692899903793569576 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj 181b1b9896b239a2 -15350 15621 1692899903821569920 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj 77f1577817fce6a3 -15406 15630 1692899903833570067 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj 6c1d99540bf9ef99 -15574 15835 1692899904037572573 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj b6d6ed775ff8be4e -15417 15889 1692899904089573212 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj cbff50fe714b20c -15621 15913 1692899904113573506 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj e2859d013c04fcf2 -15592 15928 1692899904113573506 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj 9414f0dd31026e54 -15889 16027 1692899904229574931 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mac_bb.c.obj e35b057a84319ad2 -15835 16048 1692899904249575176 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj 911640c84d575a9f -15913 16129 1692899904329576159 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj 8bae08fd7fb079a9 -15929 16225 1692899904425577338 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj d0f6eff02bee6879 -16129 16477 1692899904677580432 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj fb2dc6074e6bdc0f -16225 16488 1692899904689580580 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_pm.c.obj 1e7dea7a64665b7 -15630 16513 1692899904713580874 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj d9dd3ad74d366cb6 -16048 16741 1692899904941583675 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj 6b783aa923ed8b83 -16027 16797 1692899904997584362 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj 39d0f96cceb6c4f6 -16513 16803 1692899904985584215 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj e50bef691f7c907b -16741 16908 1692899905105585688 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj ec3eb8611223fa0 -16803 16918 1692899905101585639 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj 33263cc138e5a821 -16488 16988 1692899905189586720 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj b830476b5d628699 -16477 16996 1692899905197586818 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj be7a6606c6b3be55 -16908 17009 1692899905209586966 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S.obj f325627b1db89547 -16918 17050 1692899905253587506 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj ea46d06e7fb6964d -16996 17059 1692899905257587555 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vector_defaults.S.obj b1ac872c590e3f39 -17009 17096 1692899905297588046 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.obj 540f714ad69c52e4 -17097 17234 1692899905437589766 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj 424b41f09aa9ea39 -16988 17247 1692899905449589913 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj ce8cc96b59a00b64 -16797 17249 1692899905449589913 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj d7d3823ee1354f94 +37581 37999 1692899926201844891 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj a7b3a2893c87dfe3 17050 17257 1692899905457590011 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_common.c.obj 601a78a7344f1fa0 -17059 17259 1692899905461590061 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.c.obj 5d708384165ed93d -7470 17335 1692899905537590994 bootloader-prefix/src/bootloader-stamp/bootloader-configure 416b45a83c4efa25 -7470 17335 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure 416b45a83c4efa25 -17247 17384 1692899905585591583 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj 13311efc9f26f7b8 -17234 17528 1692899905729593352 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj f66a8cdc2d260076 -17529 17723 1692899905925595759 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj 7302ace1127a572 -17260 17755 1692899905953596103 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj 54ce34464e618b3a -17755 18026 1692899906225599443 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj b01cb4238bde3de8 -17723 18059 1692899906261599886 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_compat.c.obj 7d942be6fb0cc1ce -17384 18343 1692899906545603374 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj 61c8e39d592f8266 -18026 18447 1692899906649604651 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj f1c1add9e12d844 -18059 18459 1692899906661604798 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj 7b167f26dd100654 -17249 18563 1692899906749605879 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj 8d20bb5ea00548c1 -18447 18757 1692899906957608433 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj e6b5a3f561db0807 -18459 18776 1692899906973608630 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj c63bd43a5a10bc43 -18563 18795 1692899906997608925 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj 20c2c8bee54456a2 -18344 18964 1692899907165610988 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj dce9aee1b8825344 -18757 19014 1692899907217611627 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj eea8fda4b1cc1f82 -18776 19022 1692899907221611676 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj 2a427f723d3adab9 -18795 19170 1692899907373613543 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj be5216dec5549a4c -18964 19180 1692899907381613641 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj f6b9a0d6cbf0cf0a -19181 19369 1692899907569615950 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj 865862db37a360e1 -19170 19373 1692899907573615999 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj 15075029eda9bae8 -19014 19670 1692899907869619635 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj 60cb15eb7ccc39dd -19022 19692 1692899907893619929 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj 4559f449397f2c64 -17257 19718 1692899907881619782 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj a6fdc3a6d147a2ff -19369 19738 1692899907941620519 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj c3bc0c19a7dc0fb9 -19373 19929 1692899908129622828 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj 31548d2fa3f894b7 -19738 20238 1692899908441626660 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj 9fbb1d628c11baed -19929 20279 1692899908481627152 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj dc08608c7c9c48f -19692 20493 1692899908693629755 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 25d6e930215ae44a -19718 20626 1692899908825631377 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj cb668fbce359a567 -20238 20948 1692899909149635357 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj 21b4ade97f050327 -19670 21020 1692899909221636241 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj f513e768f61e84e -20493 21312 1692899909513639828 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj aa13910fea16ebe -20949 21473 1692899909673641793 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj 7f69ee3faa4ac755 -21020 21582 1692899909781643120 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj 303bb3b5c5c12c64 -21582 21799 1692899910001645822 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 1326dce08a993384 -21312 21809 1692899910005645871 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj b16ec717422cf70a -20627 21840 1692899910037646264 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj 1ed0f3200cf40e23 -21473 21949 1692899910149647640 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 19acfb3bcaf4cdc2 -20279 22077 1692899910277649212 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj 84569272f90f5c5d -21840 22145 1692899910345650047 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj 49549a4a4562a184 -21809 22334 1692899910537652406 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj 15d41b60db01cee0 -22145 22352 1692899910553652603 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj d51b2bab8fb2b83b -21949 22444 1692899910645653733 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj b705b054efb7bcec -22335 22879 1692899911081659089 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj 897b1b5ebd67accf -22077 23045 1692899911237661005 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj 66dc94027508e5d4 -22444 23100 1692899911297661742 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj dcbf1eb1fc70ee19 -22879 23379 1692899911581665231 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj 1f73ec91a67cab6 -22353 23499 1692899911685666508 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp.c.obj 723fa5c4caad46db -23046 23537 1692899911737667147 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ksz80xx.c.obj 52397e229235ab57 -21799 23618 1692899911813668081 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj 9d4a63a0837dbc2a -23100 23629 1692899911829668277 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan87xx.c.obj a2ec99a2639676e9 -23499 23783 1692899911985670194 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj 794d8dd3652a24dd -23618 23791 1692899911993670292 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj 2fae14e5fd14d4d0 -23379 23822 1692899912021670636 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj b76e76358282838f -23537 24148 1692899912349674665 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj 5e0f6d130375f812 -17336 24783 1692899905537590994 bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -17336 24783 1692899905537590994 bootloader/bootloader.elf 546f90292dc26503 -17336 24783 1692899905537590994 bootloader/bootloader.bin 546f90292dc26503 -17336 24783 1692899905537590994 bootloader/bootloader.map 546f90292dc26503 -17336 24783 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -17336 24783 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.elf 546f90292dc26503 -17336 24783 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.bin 546f90292dc26503 -17336 24783 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.map 546f90292dc26503 -24786 24821 0 bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 -24786 24821 0 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 -24821 24965 1692899913165684690 CMakeFiles/bootloader-complete 50d824e63b5d6e74 -24821 24965 1692899913165684690 bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 -24821 24965 1692899913165684690 /home/igor/esp/experiment-ci-cd/build/CMakeFiles/bootloader-complete 50d824e63b5d6e74 -24821 24965 1692899913165684690 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 -23792 25355 1692899913557689506 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj 7b1a1b069a7f9252 -23783 25468 1692899913669690882 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj a52326792668c5dc +8947 9086 1692899897285489669 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 727ebec46bbf85ae +8708 8840 1692899897041486674 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj aa8d02edc3220f48 +43135 43152 1692899931353915636 esp-idf/log/liblog.a c13671c9a0d3adce +5871 6916 1692899895113463007 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj 1a1f975223ed99e +35197 36145 1692899924333821930 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj 918c4c0b6d412e28 +39897 40101 1692899928301870707 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj 1924ba5f90c06203 +50704 51176 1692899939378039091 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj cdb8be092c1e5caf +42318 42492 1692899930693905468 esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_common.c.obj 540dcf58acd3533d +32944 33194 1692899921397785843 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj 8af1fb76479ac218 +48816 49129 1692899937330007610 esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/adc.c.obj df4f709ff6c2c91e +4033 4198 1692899892405429768 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ssl_debug_helpers_generated.c.obj ad82be45d1e76ce0 +36146 36654 1692899924857828371 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj d4117d7ef985b631 +49889 49998 1692899938202021016 esp-idf/esp_ringbuf/libesp_ringbuf.a 58d8062f1f212d02 +12916 13041 1692899901241538239 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj e274ae4d88680101 23629 25861 1692899914057695649 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj bf904d233a1837b2 -24148 25881 1692899914081695944 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj 8ea667a1926c12a2 +56165 56601 1692899944802122365 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj bb423750da702612 +37525 37982 1692899926185844694 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj 20fd87723f46d48b 23822 25954 1692899914153696829 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj a6893ea2070c4e07 -25881 26661 1692899914861705527 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj 94274b3045d0e6a3 -25355 26694 1692899914893705920 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj 503321a4d7064a7b -25861 26759 1692899914961706756 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj 63881a983b38028c -26694 26866 1692899915069708083 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj 5f62c663984384e8 -26759 26948 1692899915149709066 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj f16b0ed24ae7b988 -25468 27120 1692899915321711179 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj f20992f44f384303 -24965 27170 1692899915361711670 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj 1b8c4a6d6280eec8 -26949 27278 1692899915481713144 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj 3134067022ecd08 -26866 27316 1692899915517713587 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj bbed4b26a7586e -27121 27468 1692899915669715455 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj 77a28ca8ab95225d -27171 27698 1692899915897718256 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj b31c14e2d6756ed1 -27278 27731 1692899915933718698 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj 38019dac5ea8fcc4 -25954 27835 1692899916033719927 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj 3e2718c7e884bd02 -26661 27849 1692899916049720124 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj 1e2f4a61b08e1283 -27469 27865 1692899916065720320 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj 907bf307fae6204c -27698 28090 1692899916293723122 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj d2b9c99a12a7d42 -27850 28141 1692899916341723712 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj b291c3a96b1afac0 -27316 28225 1692899916421724694 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj 391d9b332ad0a86a -27866 28227 1692899916429724793 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj 8f75a2298feac663 -28091 28338 1692899916541726169 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj df6eb4532febb5d7 -27835 28352 1692899916545726218 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj a6c4535d33e5c957 -27732 28376 1692899916573726563 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj 8ccbdbf52517616d -28141 28488 1692899916689727988 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj 224d5ede1034abb3 -28227 28495 1692899916697728086 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj 2fcb2296172db216 -28226 28537 1692899916737728578 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj 95af2614f6b0a120 -28353 28633 1692899916833729757 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj 976e70999e94041a -28339 28642 1692899916841729855 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj a0f63a6f1df30b88 -28376 28719 1692899916921730839 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj 96ae0f44ccae3083 -28496 28757 1692899916957731281 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj 5a30c37588a64802 -28488 28770 1692899916965731379 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj cea359fc680f8eed -28537 28804 1692899917005731871 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj cdcac5bc1b81cb64 +46057 46344 1692899934545964784 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/sigmadelta_gpio.c.obj 79d0cccbcdbeae43 +14778 14886 1692899903085560882 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj 7b4bd75e74b7bbf6 28633 28895 1692899917097733001 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj 340b057ebda50f35 -28719 28962 1692899917161733787 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj 6e997404843234e1 -28642 28998 1692899917197734230 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj cbf116f8c585fe8e -28770 29018 1692899917217734476 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj 9bee6b99cc4764a1 -28804 29052 1692899917245734819 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj 9a35987a91c5a28c -28757 29055 1692899917257734967 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj ae8a4ae1ae125cc5 -29018 29222 1692899917421736982 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj 89484726582387b0 -28895 29254 1692899917453737376 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj 60c9ec42df46bc20 -28962 29283 1692899917485737769 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj 2cbcffa57f966ae0 -29222 29455 1692899917657739882 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj 7a5bdea9d82a72c1 -28998 29521 1692899917721740669 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj 67127455fceac6af -29052 29542 1692899917741740914 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj 6351c4c7f12a5ef -29254 29552 1692899917753741062 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj b4b839df1ee2d784 -29521 29722 1692899917921743126 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj fda1d67216307588 -29283 29752 1692899917953743519 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj 94c41e56f153fcbc -29055 29841 1692899918033744503 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj f8a44fa05fbbe2c9 -29553 29918 1692899918113745486 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj 14781e1a73bd6a0f -29752 30224 1692899918425749320 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj 95d3a539a4f4de54 -29920 30272 1692899918473749909 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj 7c7850eb1cb29294 -29455 30356 1692899918553750892 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj 3550677031036d42 -29722 30365 1692899918557750942 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj e99471133e441c8a -30224 30571 1692899918773753596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj 71764410192613e0 -29542 30645 1692899918841754432 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj 8fc458332e81ae00 -30356 30664 1692899918865754726 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj 7733b4f4f8d5f76a -30365 30678 1692899918881754923 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj 47a36a48022c77ca -30272 30683 1692899918881754923 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj c0a4de31cec00c3a -29841 30862 1692899919045756938 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj f178cb53d7b0493 -30572 30870 1692899919065757184 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj bcbd7a13b7fdf977 -30645 30877 1692899919073757283 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj afbb82a2c6881751 -30664 31020 1692899919221759101 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj 7983fa1febf6c966 -30678 31118 1692899919317760281 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj 894c1288ef4b0132 -30863 31238 1692899919437761756 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj e281919c99f64267 -30683 31253 1692899919453761953 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj 153d9db276ffdb11 -30877 31341 1692899919541763034 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj a4cf5ae7a8e0aa5b -30871 31369 1692899919569763378 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj c55f2ed2ab488052 -31020 31580 1692899919781765983 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj 4bcc3f811dd6d49f -31341 31660 1692899919861766966 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj b75c17fe3a261d67 -31253 31668 1692899919869767065 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj b3804d3da086075b -31370 31695 1692899919897767409 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj e90ce4696a689fea -31118 31808 1692899920005768736 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj 91133810a2230cce -31238 31827 1692899920025768982 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2.c.obj 8f462770c026ebad -31695 31967 1692899920169770751 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj 73b91a1e183ed6ff -31660 31974 1692899920173770800 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj 37b879014833557d -31668 31986 1692899920185770948 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj 22c8b3f83d4f1fef -31967 32257 1692899920457774291 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj 1948f09367536d07 -31974 32266 1692899920465774389 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj 3a626fdff4de15cd -31827 32311 1692899920513774979 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj 944e4091b0426a2d -32258 32427 1692899920629776405 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj 1a24bafe53e7c2f -31808 32563 1692899920761778027 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj b6dfb3f2308af72a -32311 32613 1692899920813778666 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj 78712213c6881544 -31986 32632 1692899920829778863 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj a3a3689ce26b4efd -32427 32660 1692899920861779256 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj 28c85a251e739128 -31580 32677 1692899920873779403 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj 6ac36e5c379dc7d7 -32632 32729 1692899920929780091 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj 78bf895713324ca2 -32267 32741 1692899920929780091 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj 6cf399fc51ea52b0 -32563 32795 1692899920997780927 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj 2684eb25bbf4c675 -32660 32833 1692899921033781369 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj a2e1c1050f5a61b3 -32677 32892 1692899921093782107 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj c922b2ceab98b1eb -32613 32944 1692899921145782746 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj 8956e2aa8b2207c5 -32741 33026 1692899921213783582 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj e2c81c0e4945cc8 -32729 33062 1692899921261784172 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj fb5367272b02a129 -32833 33100 1692899921301784664 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj 94d7facab62d6449 -32944 33194 1692899921397785843 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj 8af1fb76479ac218 -32795 33242 1692899921441786384 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj 4b94f3323fdbd5ee -33100 33332 1692899921533787515 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj 52a2616f90a351b1 -32893 33444 1692899921645788891 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj 5ba63ddc4610bd5c -33195 33446 1692899921645788891 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj cb687dd1b11144f -33242 33510 1692899921713789727 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj 59e091ce44f8ebda -33026 33585 1692899921785790612 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj ee846ef4115aa894 -33332 33677 1692899921877791743 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj 43cf6158462e23d7 -33445 33697 1692899921897791988 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj 8111dfdfb6a0654 -33062 33888 1692899922085794299 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj d3ba8580cd7b7a6 -33585 33928 1692899922129794840 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj cf6fb185836496 -33510 33936 1692899922137794938 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj 77655e7857af7a8a -33697 33947 1692899922137794938 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj 3952559c1d80d3da -33678 33959 1692899922157795184 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj 53b02701f795d5c1 -33928 34195 1692899922397798134 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj 86d6275b07bbe5cc -33936 34207 1692899922401798183 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj 93729eabf2e79a1a -33959 34209 1692899922409798281 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj 83ddd6fa6c8d3963 -33948 34231 1692899922433798576 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj d335a85e0723573d -33888 34408 1692899922609800739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj 5569d709e92c04d0 -34195 34550 1692899922753802509 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj c278c50b708d8ffc -34408 34579 1692899922781802853 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj b66da379f5a25310 -34550 34694 1692899922897804279 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj 8d6ed43690f15913 -34231 34840 1692899923037806000 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj 2073c17ef2aa0f82 -34209 34870 1692899923069806393 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj 6e05521cb9ac064d -33446 34972 1692899923169807622 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj 3647b217b4c1ead3 -34207 35039 1692899923237808458 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj 9a6b2bb2c69dc725 -34870 35197 1692899923397810425 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj ddbd55e0351bd7f5 -35039 35241 1692899923441810965 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj dc62643ac86acd92 -35241 35676 1692899923877816324 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj 68f45701979de561 -34580 35788 1692899923985817652 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj cc58fb68d2b9d127 -34840 35790 1692899923985817652 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj 7bc0d4cf87be6870 -34972 35805 1692899924005817898 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj ab213928b04905b8 -34694 35853 1692899924049818438 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj a0169ea520ad0138 -35676 36062 1692899924265821094 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 5c7e28036a277ce7 -35805 36115 1692899924317821733 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj 44c6b4b4ce944bbb -35197 36145 1692899924333821930 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj 918c4c0b6d412e28 -35790 36325 1692899924525824289 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj af8c67965ed147da -35853 36413 1692899924613825371 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj e87ab1473a7bc3d4 -36115 36530 1692899924733826846 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj c6b0de3a0936107b -35788 36584 1692899924785827485 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj 9693d200b069019f -36146 36654 1692899924857828371 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj d4117d7ef985b631 -36062 36666 1692899924829828026 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj 69420f8a6ea8be65 36325 36696 1692899924897828862 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj 81517eb316acb4d2 -36413 36817 1692899925017830337 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj e4561f8fd8078ecd -36654 36866 1692899925069830976 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj 480bed75a3daeec0 -36817 37130 1692899925321834074 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj 6ae74d694f72c2bb -36584 37160 1692899925337834271 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 376540643e3698ef +36062 36666 1692899924829828026 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj 69420f8a6ea8be65 36667 37322 1692899925521836532 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj 5ba47d993059d7f2 -36867 37359 1692899925561837024 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj 6bf16a5f807023fa -37161 37487 1692899925689838597 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj ed6008cf592d1e0d -37130 37525 1692899925725839040 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj d174092b16d86788 -36530 37581 1692899925781839729 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj 28c61c62b63c8f2b -37322 37712 1692899925909841302 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj 14a574ff4b947863 -37359 37781 1692899925981842187 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj 32de4bb54fe33c68 -37487 37895 1692899926097843613 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj c16fbbc268ecd0b9 -37525 37982 1692899926185844694 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj 20fd87723f46d48b -37581 37999 1692899926201844891 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj a7b3a2893c87dfe3 -37712 38069 1692899926269845727 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj b81322ca60058bbe -37781 38143 1692899926345846661 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj 578fe8fedb07cf37 -37895 38213 1692899926413847497 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj 406b39e34fa39de0 -37999 38326 1692899926529848923 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj 2ffe760ff1608e57 -37982 38375 1692899926577849513 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj 24ca7fca9f48c6d2 -38069 38402 1692899926605849858 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj bd91ab08c6f9bc3a -36696 38410 1692899926609849907 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj 58324d4a01d4b5f -38213 38460 1692899926661850546 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj 4500c34c6cb39180 +908 1250 1692899889453393539 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj 31b4b6ac92c7e6fb +18059 18459 1692899906661604798 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj 7b167f26dd100654 +33936 34207 1692899922401798183 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj 93729eabf2e79a1a +31341 31660 1692899919861766966 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj b75c17fe3a261d67 +1110 1606 1692899889809397908 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj e46f420915433891 +29752 30224 1692899918425749320 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj 95d3a539a4f4de54 +29052 29542 1692899917741740914 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj 6351c4c7f12a5ef +15350 15621 1692899903821569920 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj 77f1577817fce6a3 38143 38519 1692899926721851284 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj 3f6381593768fed3 +49277 49405 1692899937606011854 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj 3dacb5fd13cd204e +31808 32563 1692899920761778027 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj b6dfb3f2308af72a +37982 38375 1692899926577849513 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj 24ca7fca9f48c6d2 +44062 44324 1692899932525933687 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj e6d76fbc5f0811dc +42974 42991 1692899931193913171 esp-idf/esp_timer/libesp_timer.a fb0a664a3f077bf +57956 58300 1692899946502148435 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj 567ec062f9d41242 +171 220 1696956246915390510 bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 +12380 12607 1692899900809532935 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj 2d6190f5f0a5956a +36115 36530 1692899924733826846 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj c6b0de3a0936107b +17529 17723 1692899905925595759 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj 7302ace1127a572 +56684 56813 1692899945014125617 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj eb730cc68b997d21 +54529 54889 1692899943090096096 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj f79b1d59c10937b3 +14858 14937 1692899903137561521 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj 12638874845cc4f5 +19373 19929 1692899908129622828 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj 31548d2fa3f894b7 +28496 28757 1692899916957731281 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj 5a30c37588a64802 +35805 36115 1692899924317821733 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj 44c6b4b4ce944bbb +11897 11990 1692899900193525371 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj dd76520b50f5297f +27171 27698 1692899915897718256 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj b31c14e2d6756ed1 +32613 32944 1692899921145782746 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj 8956e2aa8b2207c5 +9053 9232 1692899897433491486 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj b06fc66eab1f2e8f +16129 16477 1692899904677580432 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj fb2dc6074e6bdc0f 38410 38656 1692899926853852906 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj f7a2bb69b0a0af1e -38326 38671 1692899926873853152 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj f035edd83652dd12 -38402 38732 1692899926933853890 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj 25261eb8ae70c723 -38375 38741 1692899926937853939 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj 5f631c638ad3910b -38460 38770 1692899926973854381 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj f773f57bbdb2a6a3 -38519 38878 1692899927081855709 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 60dfeae780df5b68 +33585 33928 1692899922129794840 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj cf6fb185836496 +44503 45154 1692899933353946436 esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer.c.obj a9879fdf09288a1e +33100 33332 1692899921533787515 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj 52a2616f90a351b1 +33062 33888 1692899922085794299 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj d3ba8580cd7b7a6 38671 38919 1692899927121856201 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj b1cc3aed5e4750d -38732 39007 1692899927209857283 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj e9e3091493a80814 -38657 39020 1692899927221857430 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj 68e06ba05165e202 -38741 39052 1692899927253857823 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj 6a3adade128c3d04 -38770 39072 1692899927269858020 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/tcp_isn_default.c.obj bf2398eadae6afe1 +41781 42099 1692899930301899427 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj d90013605d048bc0 +18776 19022 1692899907221611676 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj 2a427f723d3adab9 +29521 29722 1692899917921743126 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj fda1d67216307588 +51964 52388 1692899940586057649 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj 93f05791c2c2f419 +35788 36584 1692899924785827485 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj 9693d200b069019f +11491 11659 1692899899861521295 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj 70eb2ca6e2d4162b +28962 29283 1692899917485737769 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj 2cbcffa57f966ae0 +24148 25881 1692899914081695944 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj 8ea667a1926c12a2 +37322 37712 1692899925909841302 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj 14a574ff4b947863 +50 154 1692899905537590994 bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 +42493 42512 1692899930713905775 esp-idf/ulp/libulp.a e841bd1137242d34 +49626 49900 1692899938102019480 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj e820ecfaf53daa3e +34580 35788 1692899923985817652 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj cc58fb68d2b9d127 38878 39252 1692899927449860233 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/lwip_default_hooks.c.obj 7d8c3f565f3e7236 -39072 39380 1692899927581861856 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/esp_pbuf_ref.c.obj 12ce06656eedf7db -38919 39396 1692899927597862052 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj 223ece066ade0740 -39021 39433 1692899927629862446 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/sockets_ext.c.obj 889183fd2cee1d49 -39052 39499 1692899927701863331 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj f47725188e2121ca -39007 39517 1692899927713863478 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj bbb055521806df4e -39252 39547 1692899927749863921 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj 11ef364658037704 -39396 39651 1692899927853865200 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj dbdab03fce7f0b9b +12735 12925 1692899901125536815 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj 361bfb03cabfcda5 +26759 26948 1692899915149709066 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj f16b0ed24ae7b988 +32311 32613 1692899920813778666 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj 78712213c6881544 39380 39678 1692899927881865544 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj 604877272fba51ad +20627 21840 1692899910037646264 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj 1ed0f3200cf40e23 +45822 46689 1692899934885970016 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj 7ea248531f66a69f +57572 57886 1692899946086142057 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj 7758dd6880d9f3ab +49998 50067 1692899938270022062 esp-idf/xtensa/libxtensa.a ff6d11f9c16cd236 +16225 16488 1692899904689580580 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_pm.c.obj 1e7dea7a64665b7 +20279 22077 1692899910277649212 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj 84569272f90f5c5d +13041 13558 1692899901757544575 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj a5f96b450d9367da +45339 46025 1692899934225959859 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj 2838c1a173f3e448 +36654 36866 1692899925069830976 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj 480bed75a3daeec0 +53351 53591 1692899941794076200 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj e5e5fcbe42384ff8 +31238 31827 1692899920025768982 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2.c.obj 8f462770c026ebad +34694 35853 1692899924049818438 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj a0169ea520ad0138 +14245 14627 1692899902829557738 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj 1bf9e8a2534d70ae +34408 34579 1692899922781802853 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj b66da379f5a25310 +49902 50063 1692899938266022000 esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj 84de99c05de2e9d7 +26661 27849 1692899916049720124 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj 1e2f4a61b08e1283 +23046 23537 1692899911737667147 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ksz80xx.c.obj 52397e229235ab57 +51094 51385 1692899939582042224 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj fe6e47761d5ae6be +43577 43626 1692899931825922907 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a fc3db66d485b8741 +17755 18026 1692899906225599443 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj b01cb4238bde3de8 +7065 7208 1692899895409466640 bootloader-prefix/src/bootloader-stamp/bootloader-download b836621c4df76d7f +47586 48552 1692899936749998691 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj f8097331f17a7735 +51315 51395 1692899939598042471 esp-idf/esp_adc_cal/libesp_adc_cal.a 240de62455b5c934 +54534 54866 1692899943070095789 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj 4f9d7f41ff6931a5 +55253 55373 1692899943578103584 esp-idf/wear_levelling/libwear_levelling.a b346399e8539f527 +37359 37781 1692899925981842187 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj 32de4bb54fe33c68 +154 171 0 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 +2707 3011 1692899891217415187 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj eeea55b29e2e348 +49 104 1692900283047088710 esp-idf/wifi_provisioning/libwifi_provisioning.a a422d177af72e4bc +8935 9437 1692899897637493991 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj 13018eb731ac05c +18344 18964 1692899907165610988 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj dce9aee1b8825344 +12565 12654 1692899900857533524 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal_iram.c.obj 6d3c9a4732dd185c +50842 50995 1692899939198036324 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj 1ec280bd3d175702 +13524 14171 1692899902369552090 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj 702898afa6994671 +43095 43114 1692899931317915082 esp-idf/soc/libsoc.a 4430bce9f7c72887 +21799 23618 1692899911813668081 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj 9d4a63a0837dbc2a +1025 2178 1692899890369404781 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj 5a5398c287f8d6bd +19718 20626 1692899908825631377 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj cb668fbce359a567 +4418 4666 1692899892873435512 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj 287f0571b835a2ac +21949 22444 1692899910645653733 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj b705b054efb7bcec +33510 33936 1692899922137794938 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj 77655e7857af7a8a +50 154 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 +31668 31986 1692899920185770948 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj 22c8b3f83d4f1fef +6919 7595 1692899895797471403 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/igor/esp/esp-idf/components/mbedtls/port/net_sockets.c.obj 62449cae1ca4497e +15621 15913 1692899904113573506 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj e2859d013c04fcf2 +6916 7072 1692899895273464971 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/igor/esp/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj 34f34cc33fbcba2b +3792 4909 1692899893109438409 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj b4ceea2fe8a8bc1e +29722 30365 1692899918557750942 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj e99471133e441c8a +16797 17249 1692899905449589913 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj d7d3823ee1354f94 +42611 42629 1692899930833907625 esp-idf/esp_https_ota/libesp_https_ota.a e8c21c1295ccd4e1 +44162 44393 1692899932593934735 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 1a28fcc2270fb43f +58448 58654 1692899946854153832 esp-idf/dht/CMakeFiles/__idf_dht.dir/dht.c.obj a2a72a16e689de0f +2667 3182 1692899891385417249 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj fb0cf5edd9283a95 +23379 23822 1692899912021670636 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj b76e76358282838f +28091 28338 1692899916541726169 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj df6eb4532febb5d7 +51 123 0 /home/igor/esp/experiment-ci-cd/build/esp-idf/esptool_py/CMakeFiles/app_check_size 8f6ea7f45b5fb72c +21312 21809 1692899910005645871 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj b16ec717422cf70a +21020 21582 1692899909781643120 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj 303bb3b5c5c12c64 +20238 20948 1692899909149635357 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj 21b4ade97f050327 +49405 49626 1692899937830015297 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj 1f30738ed8cb0e4a +49499 49658 1692899937862015790 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj 4e0d66e9210a2694 +51657 51772 1692899939974048248 esp-idf/esp_hid/libesp_hid.a 4488ce97b5f81d1a +55317 56026 1692899944226113528 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj d71eea2ba1c5bb70 +49037 49278 1692899937478009886 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj f10938dc9ca0f5c8 +18563 18795 1692899906997608925 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj 20c2c8bee54456a2 +301 4262 1696875868634893739 /home/igor/esp/experiment-ci-cd/build/esp-idf/esp_system/ld/sections.ld e113c5f48bbea92e +15889 16027 1692899904229574931 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mac_bb.c.obj e35b057a84319ad2 +49324 49498 1692899937702013330 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj 65359a67ffad4ac0 +7470 17335 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure 416b45a83c4efa25 +41686 42190 1692899930389900783 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj fe3d831ed669c28b +43114 43135 1692899931337915389 esp-idf/heap/libheap.a 7046e9de83abe74e +30683 31253 1692899919453761953 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj 153d9db276ffdb11 +44125 44503 1692899932705936459 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj c4330ae69b6d2c9e +17247 17384 1692899905585591583 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj 13311efc9f26f7b8 +12081 12188 1692899900389527778 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj e7b29556c9724c +4233 4417 1692899892621432419 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_mem.c.obj 1ad08eab3404b45 +54722 55015 1692899943218098061 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj 10b59c9d365c2e5e +30356 30664 1692899918865754726 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj 7733b4f4f8d5f76a +29553 29918 1692899918113745486 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj 14781e1a73bd6a0f +17097 17234 1692899905437589766 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj 424b41f09aa9ea39 +16988 17247 1692899905449589913 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj ce8cc96b59a00b64 +33888 34408 1692899922609800739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj 5569d709e92c04d0 +9970 10582 1692899898781508035 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj 92b7db939740d9f2 +48 115 1692900283063088937 esp-idf/asio/libasio.a 546e956b766aaeb1 +37999 38326 1692899926529848923 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj 2ffe760ff1608e57 +52010 52261 1692899940462055744 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj 9ab62976148d0c70 +16488 16988 1692899905189586720 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj b830476b5d628699 39433 39684 1692899927885865593 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj ce843f00b6df6cb7 -39678 39869 1692899928069867855 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj 2be4156a9d9608f9 -39499 39875 1692899928073867904 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj f63ed1c3de6d93d4 +14627 14711 1692899902909558721 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 1a2cb74374d48b2a +37161 37487 1692899925689838597 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj ed6008cf592d1e0d +51834 52528 1692899940726059799 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2s.c.obj 6b4e7deeed6ee4c +15271 15574 1692899903773569331 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_async_memcpy.c.obj 74496ad4a2c5bdbc +15592 15928 1692899904113573506 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj 9414f0dd31026e54 +50318 50492 1692899938690028517 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj 1a85a10d89ef68ea +42911 42934 1692899931137912309 esp-idf/esp_eth/libesp_eth.a 3a0d86aad7554ab5 +44619 45666 1692899933861954257 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj d6976bba1714f99f +50627 50886 1692899939086034604 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj ad6c19cd4a220991 +50229 50489 1692899938690028517 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj e62e073f1aa71f0b +47675 49032 1692899937226006011 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj d938d94540aff8f +41845 42062 1692899930261898810 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj 62c72a1c111ced47 +14164 14493 1692899902693556068 esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj f18e33a8f0afb2da +5843 6246 1692899894445454807 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj ba48678273ad3f58 +12606 12735 1692899900933534457 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj c972852d9dc1ab86 +36867 37359 1692899925561837024 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj 6bf16a5f807023fa +50169 50248 1692899938450024829 esp-idf/unity/libunity.a d86628c3f910c473 +42725 42743 1692899930945909351 esp-idf/http_parser/libhttp_parser.a 6fda40509e51bbec +48131 48911 1692899937110004227 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj f4e64f57f449c049 +49658 49902 1692899938102019480 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj 2bbb5419be96dac0 +12722 13033 1692899901229538092 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj c02455b1f83b5230 +49832 49889 1692899938090019295 esp-idf/efuse/libefuse.a d0191ece836d243c +46738 47500 1692899935701982571 esp-idf/driver/CMakeFiles/__idf_driver.dir/pulse_cnt.c.obj 81f162d444a6f634 +220 4778 0 /home/igor/esp/experiment-ci-cd/build/CMakeFiles/flash eb0b64d38518b230 +11634 11728 1692899899929522130 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj 8d2ee4fa5b7fa116 +50 154 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.bin 546f90292dc26503 +34231 34840 1692899923037806000 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj 2073c17ef2aa0f82 +56446 56683 1692899944886123653 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj 866eeaa25d90e0c7 +4921 5064 1696875869470863367 .bin_timestamp 4c7337a5034d9186 +12099 12339 1692899900537529595 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj 18d5874c4a3a394b +4217 4408 1692899892613432321 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_hardware.c.obj 6daa4b293af60966 39684 39897 1692899928097868200 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj 9e6e8198768f292e +53893 54090 1692899942294083877 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj bd753a95f6ab0353 +57231 57342 1692899945546133776 esp-idf/mqtt/libmqtt.a 6e17d824151d8c88 +49619 49832 1692899938018018189 esp-idf/driver/libdriver.a 2c8dc5d10902342c +45467 45822 1692899934025956782 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_bus_lock.c.obj 6d551988eeb7046 +477 967 1692899889173390103 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj 8dc151d3a6620fa5 +2372 3231 1692899891433417839 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj abc032da890d12fa +11938 12016 1692899900217525666 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b790d6e24a245a52 +52610 52888 1692899941090065390 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj 1952a0be98d329c8 +12240 12521 1692899900721531854 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj 9341f162ac5fcd3a +52924 53351 1692899941554072515 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking_lwip.c.obj 9ced682e1106fbcb +52388 52544 1692899940730059861 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj 20cb4e69eeb7f826 +23100 23629 1692899911829668277 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan87xx.c.obj a2ec99a2639676e9 +17234 17528 1692899905729593352 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj f66a8cdc2d260076 +11685 11772 1692899899973522670 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj a5f5262d551ef546 +11961 12081 1692899900281526452 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 89f0cf946cdddef1 +42802 42850 1692899931053911014 esp-idf/wpa_supplicant/libwpa_supplicant.a 40cd3b13cc6556d4 +54359 55253 1692899943454101682 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj 54425fdb3d45faf +38402 38732 1692899926933853890 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj 25261eb8ae70c723 +28226 28537 1692899916737728578 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj 95af2614f6b0a120 +32427 32660 1692899920861779256 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj 28c85a251e739128 +11625 11836 1692899900037523456 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj f7a2feda61be6dad +40281 40744 1692899928945878694 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj 154a5f6206c5dca0 +3869 4033 1692899892237427706 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj f8e69e089c47acc3 +10583 11041 1692899899241513683 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj 5d5c13974cf53202 +39072 39380 1692899927581861856 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/esp_pbuf_ref.c.obj 12ce06656eedf7db +42955 42974 1692899931177912925 esp-idf/vfs/libvfs.a 7e337c4c7871bc63 +5434 6658 1692899894853459815 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj e9b11a32c120c286 +28757 29055 1692899917257734967 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj ae8a4ae1ae125cc5 +45023 45399 1692899933601950254 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj 9102f7c3a55d884c +42850 42869 1692899931073911323 esp-idf/esp_phy/libesp_phy.a 5c431cdb1f0473bb +11978 12403 1692899900605530430 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b6115b7542757934 +40314 41210 1692899929409885679 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj 1e120e320c6c91a1 +2374 2808 1692899891009412634 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj 38743e3bbd75d72d +11059 11214 1692899899417515844 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj 8f5c5c322bf2d012 +43866 44018 1692899932221929006 x509_crt_bundle.S b25270f24a599d95 +42099 42489 1692899930689905406 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl.c.obj d4a62e3315480378 +38741 39052 1692899927253857823 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj 6a3adade128c3d04 +15180 15406 1692899903609567317 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/compare_set.c.obj 273048751aefc979 +28537 28804 1692899917005731871 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj cdcac5bc1b81cb64 +57726 58742 1692899946942155181 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj d389356e028082b9 +51385 51579 1692899939782045298 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj 89e471fd3e984fe4 39517 40090 1692899928289870560 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj edfd5730f3f007d6 -39897 40101 1692899928301870707 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj 1924ba5f90c06203 -40101 40177 1692899928377871642 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub-entry.S.obj 49fdda1ebfff76fd +13869 14090 1692899902289551107 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/touch_sensor_hal.c.obj 83b9bbdc465e6a0f +39252 39547 1692899927749863921 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj 11ef364658037704 +35676 36062 1692899924265821094 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 5c7e28036a277ce7 +13683 13869 1692899902069548406 esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj bf6b1e4a96dbb35c +44466 45022 1692899933221944404 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj a6235c593e8301d8 +11284 11405 1692899899605518153 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj 77b0decede78db6a +29542 30645 1692899918841754432 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj 8fc458332e81ae00 +69 382 1692899888585382887 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj 98ed808e1321f094 +16477 16996 1692899905197586818 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj be7a6606c6b3be55 +22879 23379 1692899911581665231 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj 1f73ec91a67cab6 +15018 15129 1692899903329563878 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sigmadelta_periph.c.obj b8e52adff763c702 +5009 5159 1692899893365441551 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/md/esp_md.c.obj 472469257bb4ae66 +19181 19369 1692899907569615950 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj 865862db37a360e1 +12621 12764 1692899900965534850 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj d9acb8fd466d1b5 +16908 17009 1692899905209586966 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S.obj f325627b1db89547 +13958 14164 1692899902361551991 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/gpio_hal_workaround.c.obj ba4980771c855f57 +45666 47221 1692899935417978202 esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj 726f8a591cb66154 +33959 34209 1692899922409798281 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj 83ddd6fa6c8d3963 +36817 37130 1692899925321834074 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj 6ae74d694f72c2bb +19692 20493 1692899908693629755 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 25d6e930215ae44a +12608 12915 1692899901113536667 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj caadf5b6b0cc8d09 +50114 50229 1692899938430024521 esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj 5e5818f26250143 +50681 50842 1692899939046033989 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj a61dd73ab1a1b910 +13827 13984 1692899902185549830 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/brownout_hal.c.obj 1dcb4d0e42d44f27 +8658 8935 1692899897137487852 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 83afeda68e41e886 +2342 2667 1692899890873410965 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 5631dd8fe9507815 +30272 30683 1692899918881754923 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj c0a4de31cec00c3a +51772 52010 1692899940210051873 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj 6173ea6fe2345d13 +43526 43554 1692899931753921798 esp-idf/mbedtls/mbedtls/library/libmbedtls.a 63706320cec96634 +19369 19738 1692899907941620519 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj c3bc0c19a7dc0fb9 +5757 6006 1692899894205451861 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 515b6c0102600165 +51579 51834 1692899940034049169 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj 5ec2e96ed02a2eb9 +12521 12606 1692899900809532935 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj d4b505e9291f8f40 +12925 13133 1692899901333539369 esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj 572dc3bf72a0f9d7 +8504 8762 1692899896965485741 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 78c2f4669e425f73 +5742 6191 1692899894393454169 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 3c256ff34a8bb7e5 +13276 13493 1692899901693543789 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj 234d2a841c7631ae +31967 32257 1692899920457774291 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj 1948f09367536d07 +6647 6770 1692899894969461239 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj 6aa6171f5711e50d +20493 21312 1692899909513639828 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj aa13910fea16ebe +56 304 1692899888333379796 /home/igor/esp/experiment-ci-cd/build/partition_table/partition-table.bin e74d74eaeb420b13 +40636 40982 1692899929185882226 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj 8d670621f75cf551 +10796 11053 1692899899253513830 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj 33e84bd328ec3459 +3758 3850 1692899892053425447 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj 6dde04f6c5c03663 +28353 28633 1692899916833729757 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj 976e70999e94041a +7675 8290 1692899896489479898 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b2da227d782da917 +29841 30862 1692899919045756938 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj f178cb53d7b0493 +22444 23100 1692899911297661742 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj dcbf1eb1fc70ee19 +6923 7064 1692899895257464774 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 75ab04782dc6cc53 +39007 39517 1692899927713863478 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj bbb055521806df4e +27835 28352 1692899916545726218 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj a6c4535d33e5c957 +27850 28141 1692899916341723712 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj b291c3a96b1afac0 +12885 13186 1692899901385540007 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj 4de696e5e438d48 +38519 38878 1692899927081855709 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 60dfeae780df5b68 +50 154 1692899905537590994 bootloader/bootloader.elf 546f90292dc26503 +29018 29222 1692899917421736982 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj 89484726582387b0 39875 40261 1692899928461872674 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj 5bf93f11abb9c0d0 -40177 40281 1692899928481872920 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/xt_debugexception.S.obj 75504041b71db99b -39651 40314 1692899928509873265 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj cf20c9effb088fe7 -39869 40326 1692899928525873461 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj b3aee9b4bc0b0095 -40091 40402 1692899928605874445 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj f149e10b423ba6a4 -40326 40555 1692899928757876324 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj 88e3b83bf2486df8 -40261 40635 1692899928837877332 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp_common/gdbstub_common.c.obj 2d0f990b962b48de -40281 40744 1692899928945878694 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj 154a5f6206c5dca0 -40636 40982 1692899929185882226 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj 8d670621f75cf551 +30877 31341 1692899919541763034 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj a4cf5ae7a8e0aa5b +1687 1896 1692899890101401491 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj 8f92dcf0d1eebe20 +58301 58640 1692899946842153648 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj 84b17bd12ac73522 +6991 7996 1692899896185476166 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj 644a379160797eca 40744 40985 1692899929185882226 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj be2b4f5748a822b -39547 41070 1692899929265883459 esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj 47af269127d4fa0e +50063 50474 1692899938674028272 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj c3dd7d4b7ac52e8a +1250 1590 1692899889793397712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj 974c150536142650 +54224 54264 1692899942466086518 esp-idf/espcoredump/libespcoredump.a 4beb99c500314894 +49911 50115 1692899938318022799 esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj 1db9cdfcd5c96585 +17723 18059 1692899906261599886 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_compat.c.obj 7d942be6fb0cc1ce +21840 22145 1692899910345650047 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj 49549a4a4562a184 +37895 38213 1692899926413847497 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj 406b39e34fa39de0 +46344 46738 1692899934937970817 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj 984e51b4830df9ea +171 220 1696956246915390510 /home/igor/esp/experiment-ci-cd/build/CMakeFiles/bootloader-complete 50d824e63b5d6e74 +9820 10258 1692899898457504058 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj 5e783fe423c6eee9 +35241 35676 1692899923877816324 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj 68f45701979de561 +56947 57184 1692899945386131322 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj 5f9376be71edcb1b +46734 48230 1692899936425993708 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj 80f3d964b03b0b02 +1895 2024 1692899890229403062 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mps_reader.c.obj 7143116ef3b84284 +44626 45902 1692899934097957890 esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj 91697cc76e435ba1 +45892 46704 1692899934905970324 esp-idf/driver/CMakeFiles/__idf_driver.dir/adc_single.c.obj 804f0f6b0171e254 +33446 34972 1692899923169807622 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj 3647b217b4c1ead3 +29920 30272 1692899918473749909 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj 7c7850eb1cb29294 +50995 51315 1692899939514041179 esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp32/esp_adc_cal.c.obj f05b0518b59d012b +372 457 1692899888661383820 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj 37e82dabbaa5470f +69 191 1692899888397380581 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj 7307e3b4559bd0e3 +4198 4396 1692899892601432174 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 432445cecb9ca699 +39869 40326 1692899928525873461 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj b3aee9b4bc0b0095 +18964 19180 1692899907381613641 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj f6b9a0d6cbf0cf0a +25355 26694 1692899914893705920 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj 503321a4d7064a7b +10481 10728 1692899898929509853 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj cc1de73e6b4f6b09 +44019 44098 1692899932301930238 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj b221a1ff9ee0f194 +1227 1379 1692899889585395159 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj 2c69af21d151921f +7284 7470 1692899895661469734 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch d39302137e18d517 +42869 42894 1692899931097911692 esp-idf/nvs_flash/libnvs_flash.a 441bf494f6f156b4 +1606 1895 1692899890101401491 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 3f5f8b3fc4603d0b +40101 40177 1692899928377871642 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub-entry.S.obj 49fdda1ebfff76fd +7996 8777 1692899896969485790 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj ac73403eec5b8a46 +28770 29018 1692899917217734476 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj 9bee6b99cc4764a1 +2033 2453 1692899890657408315 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj d20a37f48fd56f2a +54108 54358 1692899942562087991 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj 656f974b7596615 +28376 28719 1692899916921730839 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj 96ae0f44ccae3083 +58352 58448 1692899946650150704 esp-idf/spiffs/libspiffs.a 9298b88dfed638c4 +42934 42954 1692899931157912616 esp-idf/esp_netif/libesp_netif.a 9a0e5a4789db4bb6 +6771 6991 1692899895193463989 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj c62218170ac12ba6 +10728 11284 1692899899485516679 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj d1e80b4670f03f5a +28488 28770 1692899916965731379 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj cea359fc680f8eed +39052 39499 1692899927701863331 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj f47725188e2121ca +8260 8504 1692899896705482549 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 5780df8b3122ac9b +56 68 1692899888273379059 esp-idf/esp_system/ld/memory.ld 52050a1b066cc322 +13081 13295 1692899901497541382 esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj 235514c1d54bfeed +57184 58035 1692899946234144326 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj c397965c818c6e6c +6923 7064 1692899895257464774 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 75ab04782dc6cc53 +34972 35805 1692899924005817898 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj ab213928b04905b8 +2697 3155 1692899891357416906 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj 977e0557e7820619 +27278 27731 1692899915933718698 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj 38019dac5ea8fcc4 +3857 4055 1692899892257427951 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj 9e9401b70239a1c2 +47501 48130 1692899936333992293 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj 8306981b5cf73114 40982 41136 1692899929337884569 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj 11130dab765d5c3e -40314 41210 1692899929409885679 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj 1e120e320c6c91a1 -40402 41261 1692899929461886480 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj d5838c89b392e604 -40985 41584 1692899929785891475 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj 17836c8b6913a209 -41136 41620 1692899929821892029 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj a2d4b78c9f51c9d4 -40556 41685 1692899929881892955 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj aa4b50f8f27b8bbd -41070 41745 1692899929945893941 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj 9b5fd2fed0bfce86 -41210 41781 1692899929981894496 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj a3ff06ca0c895de1 -41261 41845 1692899930045895482 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj e55ad98db35affab -41620 41883 1692899930085896099 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj 1a99e68508cd7847 -41584 41891 1692899930093896222 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj 80bbaabb21b946d2 -41845 42062 1692899930261898810 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj 62c72a1c111ced47 -41781 42099 1692899930301899427 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj d90013605d048bc0 -41686 42190 1692899930389900783 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj fe3d831ed669c28b -41745 42224 1692899930425901338 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj 389263cba49256c5 -41892 42317 1692899930517902755 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 11413e899452591e -41883 42374 1692899930573903618 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj 39e3895c9d1717c7 -42191 42483 1692899930685905344 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj 3d5db15ba0a28b30 -42099 42489 1692899930689905406 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl.c.obj d4a62e3315480378 -42318 42492 1692899930693905468 esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_common.c.obj 540dcf58acd3533d +33242 33510 1692899921713789727 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj 59e091ce44f8ebda +55479 55891 1692899944094111503 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj da52fdadf5298675 +26866 27316 1692899915517713587 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj bbed4b26a7586e +54071 54223 1692899942426085904 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj 6027e38d9c297152 +43626 43866 1692899932045926296 /home/igor/esp/experiment-ci-cd/build/esp-idf/mbedtls/x509_crt_bundle fdacb1ab98b5befe +52545 52924 1692899941126065943 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj c77b63148cb77134 +15249 15350 1692899903549566580 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 36356e39d61a0988 +50248 50317 1692899938522025935 esp-idf/cmock/libcmock.a e05909dd92f378d3 +52644 53195 1692899941382069873 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj 2e471672f8c55b2e +541 743 1692899888949387354 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj 1b47248abd61aeea 42062 42503 1692899930705905653 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj 131b3d3c919dffb6 -42493 42512 1692899930713905775 esp-idf/ulp/libulp.a e841bd1137242d34 -42225 42576 1692899930777906762 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_spi.c.obj d06b0cb295ec642a -42576 42593 1692899930797907070 esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a c926d7571e5b0c25 -42593 42611 1692899930813907316 esp-idf/sdmmc/libsdmmc.a 729f8527e30a03cf -42611 42629 1692899930833907625 esp-idf/esp_https_ota/libesp_https_ota.a e8c21c1295ccd4e1 -42629 42648 1692899930849907871 esp-idf/esp_http_server/libesp_http_server.a 6232ccfa43d497bb -42648 42668 1692899930869908179 esp-idf/esp_http_client/libesp_http_client.a abe7b7159274bf24 -42668 42688 1692899930889908488 esp-idf/tcp_transport/libtcp_transport.a 7e1e8fcd6596fc19 -42688 42707 1692899930909908797 esp-idf/esp_gdbstub/libesp_gdbstub.a 4ca9241891e0bc +2453 2643 1692899890849410671 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj dc5ad0137a8b3253 +15031 15127 1692899903329563878 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj 6ca1093a3b710e20 +49901 50051 1692899938254021815 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj b04dd61b3ac510e9 +50656 50863 1692899939066034296 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj 1a266a6e51155b +15835 16048 1692899904249575176 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj 911640c84d575a9f +36530 37581 1692899925781839729 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj 28c61c62b63c8f2b +19014 19670 1692899907869619635 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj 60cb15eb7ccc39dd +50 154 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.map 546f90292dc26503 +55373 55922 1692899944122111933 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj dfaea5481fbde7fd +36696 38410 1692899926609849907 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj 58324d4a01d4b5f +12654 12885 1692899901085536323 esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj 6fc09cf7ddce0b4d +5555 5870 1692899894073450241 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj 79850bdd284d3bed +7247 7675 1692899895877472385 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b1c2bf2fd14fc65b +33445 33697 1692899921897791988 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj 8111dfdfb6a0654 +17384 18343 1692899906545603374 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj 61c8e39d592f8266 +15000 15198 1692899903401564763 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj d2c44c9be61e50fa +53534 53790 1692899941990079210 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj b5cea515cf00098d +32729 33062 1692899921261784172 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj fb5367272b02a129 +21582 21799 1692899910001645822 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 1326dce08a993384 +44189 44626 1692899932825938307 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj de066c0abdec6fa4 +43626 43866 1692899932045926296 esp-idf/mbedtls/x509_crt_bundle fdacb1ab98b5befe +14886 15017 1692899903217562503 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj 570719c920d26136 +56625 56841 1692899945042126047 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj fea9be3aeedf0420 +22335 22879 1692899911081659089 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj 897b1b5ebd67accf 42707 42725 1692899930929909104 esp-idf/esp-tls/libesp-tls.a e430b93410edbc69 -42725 42743 1692899930945909351 esp-idf/http_parser/libhttp_parser.a 6fda40509e51bbec -42743 42782 1692899930985909967 esp-idf/lwip/liblwip.a d6e82d44060c2e62 -42782 42802 1692899931005910275 esp-idf/esp_wifi/libesp_wifi.a 5c54596a4a97f9d0 -42802 42850 1692899931053911014 esp-idf/wpa_supplicant/libwpa_supplicant.a 40cd3b13cc6556d4 -42850 42869 1692899931073911323 esp-idf/esp_phy/libesp_phy.a 5c431cdb1f0473bb -42869 42894 1692899931097911692 esp-idf/nvs_flash/libnvs_flash.a 441bf494f6f156b4 -42894 42911 1692899931113911939 esp-idf/esp_event/libesp_event.a a159deee5262ef41 -42911 42934 1692899931137912309 esp-idf/esp_eth/libesp_eth.a 3a0d86aad7554ab5 -42934 42954 1692899931157912616 esp-idf/esp_netif/libesp_netif.a 9a0e5a4789db4bb6 -42955 42974 1692899931177912925 esp-idf/vfs/libvfs.a 7e337c4c7871bc63 -42974 42991 1692899931193913171 esp-idf/esp_timer/libesp_timer.a fb0a664a3f077bf +55214 55479 1692899943682105181 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj a0367ce4b49e5222 +14726 14829 1692899903029560194 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj 1e2ca80be510e466 +23792 25355 1692899913557689506 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj 7b1a1b069a7f9252 42991 43009 1692899931213913480 esp-idf/esp_common/libesp_common.a 5ad951e038e0f3a9 -43009 43026 1692899931229913726 esp-idf/cxx/libcxx.a 808541fa7b4c0900 -43026 43047 1692899931249914034 esp-idf/newlib/libnewlib.a ab8ca8b7e0d6800f +40261 40635 1692899928837877332 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp_common/gdbstub_common.c.obj 2d0f990b962b48de +10258 10480 1692899898677506759 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj 2fcd644d54a9f55f +12404 12621 1692899900821533082 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj 4547865b01f236cd +15127 15249 1692899903449565352 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj 445221c69fed7df3 +7072 7699 1692899895901472680 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 9b1a9bc11db84574 +28719 28962 1692899917161733787 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj 6e997404843234e1 +42629 42648 1692899930849907871 esp-idf/esp_http_server/libesp_http_server.a 6232ccfa43d497bb +23618 23791 1692899911993670292 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj 2fae14e5fd14d4d0 +50 154 1692899905537590994 bootloader/bootloader.bin 546f90292dc26503 +51395 51599 1692899939802045606 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj 533c79e536c01b0c +20949 21473 1692899909673641793 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj 7f69ee3faa4ac755 +9363 9833 1692899898029498803 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj 697b1ede712863f0 +39499 39875 1692899928073867904 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj f63ed1c3de6d93d4 +7209 7283 1692899895485467573 bootloader-prefix/src/bootloader-stamp/bootloader-update 682598f9e9ba3671 +48231 48816 1692899937018002813 esp-idf/driver/CMakeFiles/__idf_driver.dir/twai.c.obj 16cdbace5166033e +40177 40281 1692899928481872920 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/xt_debugexception.S.obj 75504041b71db99b +51 266 1696875864671040425 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj b832d9cc440206cb +4909 5567 1692899893769446509 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha256.c.obj febf2a88e2791f5d +16918 17050 1692899905253587506 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj ea46d06e7fb6964d +2456 2696 1692899890901411309 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj efb88c26dcf264d7 +50 154 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.elf 546f90292dc26503 +45154 46057 1692899934257960352 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj 3072c9922ac92a70 +743 1110 1692899889301391674 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 59d208926061e7df +11784 11897 1692899900097524192 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj a9e7f1723d8dcd80 +41892 42317 1692899930517902755 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 11413e899452591e +33195 33446 1692899921645788891 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj cb687dd1b11144f +48283 48652 1692899936854000290 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac_common.c.obj f8bf2b6784a9017b +49 83 1692900283031088484 esp-idf/dht/libdht.a b412e65a30a98ff2 +53767 54108 1692899942310084122 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj 3a4595d7359cd0d7 +53790 54143 1692899942346084676 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj 419148a82dcb7baa +602 949 1692899889153389858 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj 8bed98b3501f8b14 +5159 5741 1692899893945448669 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj a6a894268b9c1892 +57145 57556 1692899945746136844 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj f74ea9d7df6dcc3f +40556 41685 1692899929881892955 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj aa4b50f8f27b8bbd +39678 39869 1692899928069867855 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj 2be4156a9d9608f9 +33678 33959 1692899922157795184 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj 53b02701f795d5c1 +29283 29752 1692899917953743519 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj 94c41e56f153fcbc +19170 19373 1692899907573615999 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj 15075029eda9bae8 +16996 17059 1692899905257587555 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vector_defaults.S.obj b1ac872c590e3f39 +43483 43506 1692899931709921120 esp-idf/bootloader_support/libbootloader_support.a 51560f3c61ab6ce +15198 15417 1692899903617567415 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 31beb94b008e486c +53591 53767 1692899941970078904 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_checksum.c.obj 658d754ce42ff0eb +21809 22334 1692899910537652406 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj 15d41b60db01cee0 +50267 50627 1692899938830030669 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj 84148654be7bca3d +44393 45339 1692899933537949269 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj 9d2c1e6f1cc033db +391 541 1692899888745384851 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj baf542f2b9f13343 +40402 41261 1692899929461886480 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj d5838c89b392e604 +38657 39020 1692899927221857430 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj 68e06ba05165e202 +12016 12108 1692899900309526796 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj 39403b40ee016ff +14493 14672 1692899902873558279 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj 45128d5c2a5ae937 +8840 8927 1692899897129487754 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj 8cbb0dd0e9dfb3d6 +191 477 1692899888681384066 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj ef1489f64e0a59ed +52262 52610 1692899940810061090 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj b0a29b24cdc7fa71 +43324 43407 1692899931545918594 esp-idf/pthread/libpthread.a 3a38f6e4fbea0dc1 +194 314 1696363330843880036 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj cc9a7382bc46e35e +52888 55954 1692899944142112240 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj 9d9ee07f74ede711 +2114 2374 1692899890577407333 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj fca6889f109e6c10 +14941 15031 1692899903233562700 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj 1c8cc56b36e78d24 +11927 11961 1692899900161524978 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj dcc377f73d424271 +42894 42911 1692899931113911939 esp-idf/esp_event/libesp_event.a a159deee5262ef41 +17059 17259 1692899905461590061 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.c.obj 5d708384165ed93d +47664 48283 1692899936481994570 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj a97c1f643ba08167 +36413 36817 1692899925017830337 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj e4561f8fd8078ecd +22077 23045 1692899911237661005 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj 66dc94027508e5d4 +11053 11249 1692899899449516237 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj ff2239ce3887c780 +22145 22352 1692899910553652603 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj d51b2bab8fb2b83b +11222 11491 1692899899693519232 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj e6f5b851d84388e2 +21473 21949 1692899910149647640 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 19acfb3bcaf4cdc2 +10897 11059 1692899899261513929 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj 2df9bd931afb6ee5 +12165 12380 1692899900581530135 esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj 96f29e354c3e7bcf +42743 42782 1692899930985909967 esp-idf/lwip/liblwip.a d6e82d44060c2e62 +11660 11825 1692899900025523309 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj c9ef13687a53587e +11772 11863 1692899900065523800 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj cc66870ecca757ec +51578 51934 1692899940126050583 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj fdc79f1519dcb4ce +8015 8708 1692899896909485054 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 543ec37936cc63cc +56813 57572 1692899945770137212 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj abeb66492474337d +51176 51577 1692899939778045236 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj 8aff5b19235f1a44 +9437 9970 1692899898165500473 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj fe30fd6226ac5a3b +41883 42374 1692899930573903618 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj 39e3895c9d1717c7 +54445 54721 1692899942922093518 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj c712e7ec9b7b7875 +12764 13081 1692899901281538730 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj 729e5e063cc48114 +51101 51657 1692899939858046466 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj 79730046cfde55af +56 78 1692899888281379158 project_elf_src_esp32.c aefaed129c824ff9 +57886 58201 1692899946402146902 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj cb16d4dfda1f38f5 +53829 53893 1692899942094080807 esp-idf/protocomm/libprotocomm.a 4216fa78fedb96ad +54090 54402 1692899942606088666 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj ed0d0a1bf7ca0325 +30224 30571 1692899918773753596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj 71764410192613e0 +11837 12061 1692899900261526206 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr.c.obj 8661c4639a7bb67a 43047 43071 1692899931273914404 esp-idf/freertos/libfreertos.a 565e57144ff2802c -43071 43095 1692899931297914773 esp-idf/esp_hw_support/libesp_hw_support.a d182f33cf0deed44 -43095 43114 1692899931317915082 esp-idf/soc/libsoc.a 4430bce9f7c72887 -43114 43135 1692899931337915389 esp-idf/heap/libheap.a 7046e9de83abe74e -43135 43152 1692899931353915636 esp-idf/log/liblog.a c13671c9a0d3adce -43152 43182 1692899931385916130 esp-idf/hal/libhal.a 63fa8aece9d2a6b6 -43182 43204 1692899931405916437 esp-idf/esp_rom/libesp_rom.a a42c1cd3ad26edc7 +30664 31020 1692899919221759101 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj 7983fa1febf6c966 +28895 29254 1692899917453737376 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj 60c9ec42df46bc20 +57557 57956 1692899946158143162 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj 2e7ebbdd34492d66 +28998 29521 1692899917721740669 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj 67127455fceac6af +49141 49555 1692899937758014191 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj 9cc46c11953fb3e7 +3514 3857 1692899892057425496 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj e27579f4221dfdd0 +44018 44062 1692899932265929683 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 6b996e71d20e3812 +51433 51797 1692899939998048616 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c.c.obj a563fd1915dacf3c +51797 52001 1692899940202051750 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj 7fb6ee98976ad605 +15406 15630 1692899903833570067 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj 6c1d99540bf9ef99 +4916 5727 1692899893929448473 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha512.c.obj 81619445f0b9facf +15274 15592 1692899903793569576 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj 181b1b9896b239a2 +19738 20238 1692899908441626660 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj 9fbb1d628c11baed +11446 11784 1692899899981522769 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj 7e30941ed3719b22 +1550 1687 1692899889893398939 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj 5f0caeb934bcc8ee +23537 24148 1692899912349674665 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj 5e0f6d130375f812 +949 1227 1692899889421393147 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj 17f05a7ab3e3fa9 +38460 38770 1692899926973854381 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj f773f57bbdb2a6a3 +41136 41620 1692899929821892029 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj a2d4b78c9f51c9d4 +3231 3792 1692899891997424760 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj fdb528a09bf9f528 +1988 2456 1692899890661408364 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj e8d3f5fc367d3ba2 +52001 52201 1692899940402054823 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj 3233197c68cbab04 +13314 13683 1692899901881546098 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj f5b4521d4c9c1c40 +58201 58519 1692899946722151808 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj ba54d304de29cb88 +50492 50656 1692899938858031099 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj 1514a558acb22bcb +41584 41891 1692899930093896222 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj 80bbaabb21b946d2 +17249 18563 1692899906749605879 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj 8d20bb5ea00548c1 +19022 19692 1692899907893619929 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj 4559f449397f2c64 +49449 49512 1692899937714013514 esp-idf/mbedtls/libmbedtls.a 85d0c49e6c565007 +24965 27170 1692899915361711670 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj 1b8c4a6d6280eec8 +44862 44953 1692899933153943358 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj c24b5c178296734 +14807 14902 1692899903105561128 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj 191cf667ee0860f9 +4538 5055 1692899893261440274 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/aes/block/esp_aes.c.obj b337f7b092da2664 +14244 14599 1692899902801557395 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj 4a9d3339be738e6e +37712 38069 1692899926269845727 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj b81322ca60058bbe 43204 43324 1692899931441916992 esp-idf/esp_system/libesp_system.a afe0b0ab1cf1085e -43324 43407 1692899931545918594 esp-idf/pthread/libpthread.a 3a38f6e4fbea0dc1 +25468 27120 1692899915321711179 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj f20992f44f384303 +41261 41845 1692899930045895482 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj e55ad98db35affab +14090 14359 1692899902561554447 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 70112133eaa41b31 +15913 16129 1692899904329576159 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj 8bae08fd7fb079a9 +14794 14858 1692899903057560538 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj 3ea6c929e90ab031 +50886 51353 1692899939554041794 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj 3b876f6dab0b6742 +42668 42688 1692899930889908488 esp-idf/tcp_transport/libtcp_transport.a 7e1e8fcd6596fc19 +42225 42576 1692899930777906762 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_spi.c.obj d06b0cb295ec642a +42648 42668 1692899930869908179 esp-idf/esp_http_client/libesp_http_client.a abe7b7159274bf24 +14829 14941 1692899903141561570 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj c5a499d3bc002fae +314 341 1696363330871880036 esp-idf/main/libmain.a da7fbe0937e18059 +50 154 1692899905537590994 bootloader/bootloader.map 546f90292dc26503 +12108 12240 1692899900441528416 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj b936722bffedc1fe +967 1049 1692899889253391085 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj 97f56a908b1eb7f6 +3499 3869 1692899892073425693 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj 4f397628cbff4e2b +58035 58279 1692899946482148129 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj 70d822cd6856eae0 +48553 49037 1692899937238006195 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj 9b5c8af404adcb73 +78 391 1692899888597383035 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj dcc0cfaef8ba855c +14672 14778 1692899902977559555 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj 11bb6c3cc7bfd856 +50115 50649 1692899938838030792 esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj 3be94615deb7c816 +15574 15835 1692899904037572573 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj b6d6ed775ff8be4e +12061 12165 1692899900365527483 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 74343634cf8a9b33 +7209 7283 1692899895485467573 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-update 682598f9e9ba3671 +51 123 0 esp-idf/esptool_py/CMakeFiles/app_check_size 8f6ea7f45b5fb72c +56 68 1692899888273379059 /home/igor/esp/experiment-ci-cd/build/esp-idf/esp_system/ld/memory.ld 52050a1b066cc322 +753 908 1692899889101389220 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj 818ed13ec32af456 +16741 16908 1692899905105585688 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj ec3eb8611223fa0 +55015 55317 1692899943518102664 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj d1f08f6d6b4bf466 +266 301 1696875864707039071 esp-idf/app_update/libapp_update.a 1792f6de2773218d 43408 43483 1692899931633919949 esp-idf/spi_flash/libspi_flash.a 73ee9d47c62f55d2 -43483 43506 1692899931709921120 esp-idf/bootloader_support/libbootloader_support.a 51560f3c61ab6ce -43506 43526 1692899931729921428 esp-idf/app_update/libapp_update.a 1792f6de2773218d -43526 43554 1692899931753921798 esp-idf/mbedtls/mbedtls/library/libmbedtls.a 63706320cec96634 -43554 43577 1692899931777922167 esp-idf/mbedtls/mbedtls/library/libmbedx509.a d9aca3808fc80edd -43577 43626 1692899931825922907 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a fc3db66d485b8741 -43626 43866 1692899932045926296 esp-idf/mbedtls/x509_crt_bundle fdacb1ab98b5befe -43626 43866 1692899932045926296 /home/igor/esp/experiment-ci-cd/build/esp-idf/mbedtls/x509_crt_bundle fdacb1ab98b5befe -43866 44018 1692899932221929006 x509_crt_bundle.S b25270f24a599d95 -43866 44018 1692899932221929006 /home/igor/esp/experiment-ci-cd/build/x509_crt_bundle.S b25270f24a599d95 -44018 44062 1692899932265929683 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 6b996e71d20e3812 -44019 44098 1692899932301930238 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj b221a1ff9ee0f194 -44021 44125 1692899932325930607 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj a6e214d52f88e28d +43152 43182 1692899931385916130 esp-idf/hal/libhal.a 63fa8aece9d2a6b6 +39021 39433 1692899927629862446 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/sockets_ext.c.obj 889183fd2cee1d49 +53812 54071 1692899942274083570 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj 8d71dcf5db2ad5b2 +15133 15274 1692899903473565647 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj 6618c967d6c77452 +50913 51101 1692899939302037922 esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal_common.c.obj beb78a190815c26 +56601 56825 1692899945026125801 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj 398ccae258bc7155 +38919 39396 1692899927597862052 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj 223ece066ade0740 +55940 57231 1692899945430131997 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj 69f8cc8771dac722 +25861 26759 1692899914961706756 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj 63881a983b38028c +54866 55214 1692899943418101130 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj 444d79ff3e7a2e99 +38770 39072 1692899927269858020 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/tcp_isn_default.c.obj bf2398eadae6afe1 +49593 50168 1692899938366023538 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj 676dcbf2771a0de1 +38375 38741 1692899926937853939 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj 5f631c638ad3910b +38732 39007 1692899927209857283 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj e9e3091493a80814 +53195 53534 1692899941738075341 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj 68a6cca31a853cbb +49278 49674 1692899937874015974 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj 7db2dc596c9bdfd9 +2063 2372 1692899890577407333 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj 577b84ba0c89da94 +41745 42224 1692899930425901338 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj 389263cba49256c5 +56841 56947 1692899945150127703 esp-idf/perfmon/libperfmon.a 7027c639f77dad31 +154 171 0 bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 +51353 51433 1692899939634043023 esp-idf/console/libconsole.a 7b9442c347b633f +57132 57726 1692899945926139604 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj 9d997ea2be666363 +301 4262 1696875868634893739 esp-idf/esp_system/ld/sections.ld e113c5f48bbea92e 44018 44162 1692899932361931162 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj c81e5df9382fc6ef -44019 44189 1692899932389931594 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj c35ed0145813a93d -44062 44324 1692899932525933687 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj e6d76fbc5f0811dc -44162 44393 1692899932593934735 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 1a28fcc2270fb43f -44098 44466 1692899932657935720 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj a764497c13bc950d -44125 44503 1692899932705936459 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj c4330ae69b6d2c9e +16048 16741 1692899904941583675 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj 6b783aa923ed8b83 +14171 14621 1692899902821557640 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj 16399c91729cf9d1 +6006 7023 1692899895217464284 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj 1a588e6fa85e02ce 44325 44619 1692899932821938246 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj 12ce1aebd3cdaa2b -44189 44626 1692899932825938307 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj de066c0abdec6fa4 -44019 44862 1692899933045941695 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj f6337f47c365bb9c -44862 44953 1692899933153943358 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj c24b5c178296734 -44466 45022 1692899933221944404 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj a6235c593e8301d8 -44503 45154 1692899933353946436 esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer.c.obj a9879fdf09288a1e -44393 45339 1692899933537949269 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj 9d2c1e6f1cc033db -45023 45399 1692899933601950254 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj 9102f7c3a55d884c +33928 34195 1692899922397798134 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj 86d6275b07bbe5cc +26949 27278 1692899915481713144 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj 3134067022ecd08 +15417 15889 1692899904089573212 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj cbff50fe714b20c +9836 9986 1692899898169500522 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj f305003bead6f11f +577 896 1692899889101389220 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj 6e598b5c2e90d27c +56 304 1692899888333379796 partition_table/partition-table.bin e74d74eaeb420b13 +11015 11425 1692899899625518397 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt.c.obj c6aaf9c59f8bea5b +18795 19170 1692899907373613543 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj be5216dec5549a4c +48652 49228 1692899937426009086 esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj 230b97611c06c55 +4147 4233 1692899892429430062 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj 8525662c2b8bd195 +34207 35039 1692899923237808458 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj 9a6b2bb2c69dc725 +44019 44189 1692899932389931594 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj c35ed0145813a93d +42688 42707 1692899930909908797 esp-idf/esp_gdbstub/libesp_gdbstub.a 4ca9241891e0bc +14711 14793 1692899902993559752 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj d0849702c33a246e +8538 8946 1692899897149488000 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj 1a768c67a6eaf7c9 +27698 28090 1692899916293723122 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj d2b9c99a12a7d42 +52201 52572 1692899940774060537 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj 5b5013c2a1c5889e +9342 9768 1692899897969498067 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj e43c09ee90220ebe +39651 40314 1692899928509873265 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj cf20c9effb088fe7 +32677 32892 1692899921093782107 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj c922b2ceab98b1eb +30365 30678 1692899918881754923 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj 47a36a48022c77ca +13395 13524 1692899901721544133 esp-idf/hal/CMakeFiles/__idf_hal.dir/sigmadelta_hal.c.obj 927c4d13b076b1e8 +5727 5814 1692899894013449504 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj b629cdfd5e26ad2 +37781 38143 1692899926345846661 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj 578fe8fedb07cf37 +7470 17335 1692899905537590994 bootloader-prefix/src/bootloader-stamp/bootloader-configure 416b45a83c4efa25 +32267 32741 1692899920929780091 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj 6cf399fc51ea52b0 +171 220 1696956246915390510 CMakeFiles/bootloader-complete 50d824e63b5d6e74 +6246 8014 1692899896201476362 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj f8d0d41b3e4c5bf8 +35790 36325 1692899924525824289 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj af8c67965ed147da +1829 1970 1692899890177402424 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj ca4af85425b811cb +50649 50912 1692899939110034972 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj b1838f2808fdc75f +171 220 1696956246915390510 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 +32563 32795 1692899920997780927 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj 2684eb25bbf4c675 +32741 33026 1692899921213783582 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj e2c81c0e4945cc8 +16803 16918 1692899905101585639 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj 33263cc138e5a821 +28339 28642 1692899916841729855 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj a0f63a6f1df30b88 +9833 10186 1692899898385503174 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj 3724998cc1739411 +30871 31369 1692899919569763378 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj c55f2ed2ab488052 +25881 26661 1692899914861705527 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj 94274b3045d0e6a3 +33026 33585 1692899921785790612 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj ee846ef4115aa894 +43182 43204 1692899931405916437 esp-idf/esp_rom/libesp_rom.a a42c1cd3ad26edc7 +3545 3881 1692899892085425840 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj 111a759d913cb1b3 +29222 29455 1692899917657739882 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj 7a5bdea9d82a72c1 +15630 16513 1692899904713580874 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj d9dd3ad74d366cb6 +5055 5555 1692899893757446362 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj d2623d10143fb87f +49512 58790 1692899946970155611 esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj 85eb7cdfbefe0b99 +56140 56624 1692899944806122426 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj a744778b77d39b6e +35039 35241 1692899923441810965 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj dc62643ac86acd92 +32795 33242 1692899921441786384 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj 4b94f3323fdbd5ee +43009 43026 1692899931229913726 esp-idf/cxx/libcxx.a 808541fa7b4c0900 +31986 32632 1692899920829778863 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj a3a3689ce26b4efd +7699 7916 1692899896117475331 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj c8fc525242e8e733 +55954 56058 1692899944254113958 esp-idf/mdns/libmdns.a 53a0d0c344331d2 +29254 29552 1692899917753741062 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj b4b839df1ee2d784 +33332 33677 1692899921877791743 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj 43cf6158462e23d7 +27469 27865 1692899916065720320 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj 907bf307fae6204c +29455 30356 1692899918553750892 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj 3550677031036d42 +22353 23499 1692899911685666508 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp.c.obj 723fa5c4caad46db +53460 53811 1692899942010079518 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj 7ff5a9ca2303706d +25954 27835 1692899916033719927 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj 3e2718c7e884bd02 +13033 13314 1692899901505541480 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj 752c800ba4ebca85 +3182 3758 1692899891961424319 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj eeddb740db185656 +34195 34550 1692899922753802509 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj c278c50b708d8ffc +18757 19014 1692899907217611627 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj eea8fda4b1cc1f82 +57041 57145 1692899945346130708 esp-idf/json/libjson.a 19e88c0993a3e501 +38213 38460 1692899926661850546 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj 4500c34c6cb39180 +26694 26866 1692899915069708083 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj 5f62c663984384e8 +19670 21020 1692899909221636241 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj f513e768f61e84e +305 1550 1692899889749397172 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj 8741009d52c19afb +31118 31808 1692899920005768736 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj 91133810a2230cce +46393 46733 1692899934929970694 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj 9ce1087806f5280e +43071 43095 1692899931297914773 esp-idf/esp_hw_support/libesp_hw_support.a d182f33cf0deed44 +2024 2114 1692899890317404142 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj 1b6bfa6174df8fc2 44953 45467 1692899933665951239 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj d9bfa6ec34ab7e8e -44619 45666 1692899933861954257 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj d6976bba1714f99f -45467 45822 1692899934025956782 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_bus_lock.c.obj 6d551988eeb7046 -45399 45892 1692899934093957828 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj 49d9f6e6a61f1b8c -44626 45902 1692899934097957890 esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj 91697cc76e435ba1 -45339 46025 1692899934225959859 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj 2838c1a173f3e448 -45154 46057 1692899934257960352 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj 3072c9922ac92a70 -46057 46344 1692899934545964784 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/sigmadelta_gpio.c.obj 79d0cccbcdbeae43 +11990 12055 1692899900253526108 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tjpgd.c.obj 7273a5df4f20ffa7 +4262 4921 1696875869322868726 experiment-ci-cd.elf b5dc7688cc069bf +29055 29841 1692899918033744503 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj f8a44fa05fbbe2c9 +41620 41883 1692899930085896099 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj 1a99e68508cd7847 +31253 31668 1692899919869767065 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj b3804d3da086075b +16513 16803 1692899904985584215 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj e50bef691f7c907b 45902 46393 1692899934593965523 esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj b0b6d33af6bd8145 -45822 46689 1692899934885970016 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj 7ea248531f66a69f -45892 46704 1692899934905970324 esp-idf/driver/CMakeFiles/__idf_driver.dir/adc_single.c.obj 804f0f6b0171e254 -46393 46733 1692899934929970694 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj 9ce1087806f5280e -46344 46738 1692899934937970817 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj 984e51b4830df9ea -45666 47221 1692899935417978202 esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj 726f8a591cb66154 -46689 47236 1692899935437978510 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj 743a16f5ed0e38e3 -46738 47500 1692899935701982571 esp-idf/driver/CMakeFiles/__idf_driver.dir/pulse_cnt.c.obj 81f162d444a6f634 -46025 47586 1692899935765983556 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj 8ef09bede0d60a21 +54889 55940 1692899944134112117 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj 2d8824dce34ab91a +55892 57040 1692899945238129053 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj ec31abce0dd35dbf +7980 8435 1692899896637481715 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj cb661168f5d659d0 +3011 3514 1692899891709421226 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj 9cdfc09c9fd7129c +41070 41745 1692899929945893941 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj 9b5fd2fed0bfce86 +32258 32427 1692899920629776405 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj 1a24bafe53e7c2f +40091 40402 1692899928605874445 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj f149e10b423ba6a4 +31974 32266 1692899920465774389 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj 3a626fdff4de15cd +11729 11926 1692899900129524585 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj 578d8594e8cbee6e +4726 5008 1692899893213439685 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp32/bignum.c.obj c68f53378038f556 +18026 18447 1692899906649604651 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj f1c1add9e12d844 +43026 43047 1692899931249914034 esp-idf/newlib/libnewlib.a ab8ca8b7e0d6800f +30678 31118 1692899919317760281 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj 894c1288ef4b0132 +5568 5843 1692899894045449897 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj 5fcd1bc575cf08a8 +37487 37895 1692899926097843613 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj c16fbbc268ecd0b9 +56825 57131 1692899945334130524 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj 73835d6db276fb22 +11426 11634 1692899899837521000 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj 6f1d882b48c6d67c 47236 47664 1692899935865985094 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj b489cd94a676495b -46704 47675 1692899935873985218 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj 54b81c9dc5c20119 -47501 48130 1692899936333992293 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj 8306981b5cf73114 -46734 48230 1692899936425993708 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj 80f3d964b03b0b02 -47664 48283 1692899936481994570 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj a97c1f643ba08167 +23783 25468 1692899913669690882 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj a52326792668c5dc +5466 5755 1692899893953448768 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj e5dc330b10e40b9d +14696 14807 1692899903009559949 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj 113b01e440d959dd +39396 39651 1692899927853865200 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj dbdab03fce7f0b9b +36584 37160 1692899925337834271 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 376540643e3698ef +53760 53829 1692899942030079824 esp-idf/protobuf-c/libprotobuf-c.a 22c3c036860d988 +10186 10514 1692899898717507250 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj b548d73014eabb8d +30572 30870 1692899919065757184 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj bcbd7a13b7fdf977 +10515 10897 1692899899097511915 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj e088e5258bd2724e +39547 41070 1692899929265883459 esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj 47af269127d4fa0e +56026 56140 1692899944342115308 esp-idf/fatfs/libfatfs.a 659a652bd2b9b721 +75 371 1692899888577382790 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj cb67609f03a46a4b +31660 31974 1692899920173770800 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj 37b879014833557d +13186 13395 1692899901597542610 esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj c853cc14a1ec203 +49282 49593 1692899937786014621 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj dc8e6cf97de78789 +17257 19718 1692899907881619782 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj a6fdc3a6d147a2ff +43554 43577 1692899931777922167 esp-idf/mbedtls/mbedtls/library/libmbedx509.a d9aca3808fc80edd 47222 48432 1692899936629996845 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj fb71d86796ee2ade -47586 48552 1692899936749998691 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj f8097331f17a7735 -48283 48652 1692899936854000290 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac_common.c.obj f8bf2b6784a9017b -48231 48816 1692899937018002813 esp-idf/driver/CMakeFiles/__idf_driver.dir/twai.c.obj 16cdbace5166033e -48131 48911 1692899937110004227 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj f4e64f57f449c049 -47675 49032 1692899937226006011 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj d938d94540aff8f -48553 49037 1692899937238006195 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj 9b5c8af404adcb73 -48816 49129 1692899937330007610 esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/adc.c.obj df4f709ff6c2c91e -48433 49141 1692899937338007733 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj f0dfaf490901db6 -48652 49228 1692899937426009086 esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj 230b97611c06c55 -49130 49277 1692899937478009886 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj 68fa218f2e9c0a10 -49037 49278 1692899937478009886 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj f10938dc9ca0f5c8 -48911 49282 1692899937482009947 esp-idf/driver/CMakeFiles/__idf_driver.dir/adc_deprecated.c.obj 7fddfe52a6fbdcc3 +33697 33947 1692899922137794938 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj 3952559c1d80d3da +54264 54529 1692899942730090570 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj bb9e9b42445d04b7 +104 4972 1697034843909856169 build.ninja d4215ddd16e07ec5 +383 753 1692899888957387452 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj a793110c2f5f43a0 +33948 34231 1692899922433798576 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj d335a85e0723573d +27121 27468 1692899915669715455 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj 77a28ca8ab95225d +3881 4175 1692899892381429473 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj cba107ac6d01cbfd +10633 11014 1692899899217513388 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj 9fb04fae07260dee +10303 10414 1692899898613505973 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 8c6a2fe9fdede08 +13984 14245 1692899902445553023 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj 67a46c286c1e667e +11250 11446 1692899899649518692 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj 9f39fc8b95f3bb05 +27316 28225 1692899916421724694 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj 391d9b332ad0a86a +18447 18757 1692899906957608433 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj e6b5a3f561db0807 +9987 10303 1692899898505504647 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj b28d2601a435ae36 +14359 15180 1692899903377564468 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_tlsf.c.obj 49278e1621099b4c +15129 15271 1692899903473565647 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj 909a4e134f9c9b6c +9655 9820 1692899898021498705 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/flash_ops_esp32.c.obj 1149273985103764 +1897 2033 1692899890237403160 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mps_trace.c.obj bf767a4e94e8f777 +1590 1988 1692899890193402620 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj 1f5f1528c05b070f +11041 11222 1692899899425515942 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj 2f49e38ed8019713 +9138 9342 1692899897541492812 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj 552b615caef1301e +9086 9362 1692899897565493107 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj dd3a0ab25f01bc3d +28141 28488 1692899916689727988 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj 224d5ede1034abb3 +34870 35197 1692899923397810425 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj ddbd55e0351bd7f5 +50051 50267 1692899938470025136 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj 969575da72e3151e +32660 32833 1692899921033781369 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj a2e1c1050f5a61b3 +27732 28376 1692899916573726563 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj 8ccbdbf52517616d +8762 9138 1692899897337490308 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj 3a5789c4c34502ee +9768 10466 1692899898665506611 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj 74f5b47377b3938c +31580 32677 1692899920873779403 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj 6ac36e5c379dc7d7 +30863 31238 1692899919437761756 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj e281919c99f64267 +54143 54445 1692899942646089280 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj 9abacebfb074e828 49032 49324 1692899937526010624 esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/dac.c.obj 92ca07712117d91f -49277 49405 1692899937606011854 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj 3dacb5fd13cd204e -49228 49448 1692899937650012530 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj 22f9f2a6240be923 -49324 49498 1692899937702013330 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj 65359a67ffad4ac0 -49449 49512 1692899937714013514 esp-idf/mbedtls/libmbedtls.a 85d0c49e6c565007 -49141 49555 1692899937758014191 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj 9cc46c11953fb3e7 -49282 49593 1692899937786014621 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj dc8e6cf97de78789 +1049 2342 1692899890541406891 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj d3506bdec0cc1110 +14937 15015 1692899903209562405 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj 20e595009b8bde2 +48911 49282 1692899937482009947 esp-idf/driver/CMakeFiles/__idf_driver.dir/adc_deprecated.c.obj 7fddfe52a6fbdcc3 +8435 8658 1692899896861484464 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 219dc7b6e8b88053 +27866 28227 1692899916429724793 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj 8f75a2298feac663 +1379 1829 1692899890033400657 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj 12ae550bbb07b983 +3329 3499 1692899891705421177 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj 248a6fb516089fe2 +12598 12722 1692899900925534359 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj b819ffd84ad6a909 49555 49619 1692899937826015236 esp-idf/esp_pm/libesp_pm.a c015b7f8358c4e4e -49405 49626 1692899937830015297 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj 1f30738ed8cb0e4a -49499 49658 1692899937862015790 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj 4e0d66e9210a2694 -49278 49674 1692899937874015974 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj 7db2dc596c9bdfd9 -49619 49832 1692899938018018189 esp-idf/driver/libdriver.a 2c8dc5d10902342c -49832 49889 1692899938090019295 esp-idf/efuse/libefuse.a d0191ece836d243c -49626 49900 1692899938102019480 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj e820ecfaf53daa3e -49658 49902 1692899938102019480 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj 2bbb5419be96dac0 -49674 49911 1692899938110019603 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj c73d7fe5f55745d -49889 49998 1692899938202021016 esp-idf/esp_ringbuf/libesp_ringbuf.a 58d8062f1f212d02 -49901 50051 1692899938254021815 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj b04dd61b3ac510e9 -49902 50063 1692899938266022000 esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj 84de99c05de2e9d7 -49998 50067 1692899938270022062 esp-idf/xtensa/libxtensa.a ff6d11f9c16cd236 +5096 5466 1692899893673445331 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj 753f81f28e2f469f 50067 50114 1692899938318022799 esp-idf/app_trace/libapp_trace.a e2cadc11fcdd8067 -49911 50115 1692899938318022799 esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj 1db9cdfcd5c96585 -49593 50168 1692899938366023538 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj 676dcbf2771a0de1 -50114 50229 1692899938430024521 esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj 5e5818f26250143 -50169 50248 1692899938450024829 esp-idf/unity/libunity.a d86628c3f910c473 -50051 50267 1692899938470025136 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj 969575da72e3151e -50248 50317 1692899938522025935 esp-idf/cmock/libcmock.a e05909dd92f378d3 -50063 50474 1692899938674028272 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj c3dd7d4b7ac52e8a -50229 50489 1692899938690028517 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj e62e073f1aa71f0b -50318 50492 1692899938690028517 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj 1a85a10d89ef68ea -50267 50627 1692899938830030669 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj 84148654be7bca3d -50115 50649 1692899938838030792 esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj 3be94615deb7c816 -50492 50656 1692899938858031099 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj 1514a558acb22bcb -50489 50681 1692899938882031469 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj 3d8d32fb7feb6718 -50474 50704 1692899938906031838 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj 56e151225bdfb667 -50681 50842 1692899939046033989 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj a61dd73ab1a1b910 -50656 50863 1692899939066034296 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj 1a266a6e51155b -50627 50886 1692899939086034604 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj ad6c19cd4a220991 -50649 50912 1692899939110034972 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj b1838f2808fdc75f -50842 50995 1692899939198036324 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj 1ec280bd3d175702 -50863 51094 1692899939298037861 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj 36a79c0a855e3fae -50913 51101 1692899939302037922 esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal_common.c.obj beb78a190815c26 -50704 51176 1692899939378039091 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj cdb8be092c1e5caf -50995 51315 1692899939514041179 esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp32/esp_adc_cal.c.obj f05b0518b59d012b -50886 51353 1692899939554041794 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj 3b876f6dab0b6742 -51094 51385 1692899939582042224 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj fe6e47761d5ae6be -51315 51395 1692899939598042471 esp-idf/esp_adc_cal/libesp_adc_cal.a 240de62455b5c934 -51353 51433 1692899939634043023 esp-idf/console/libconsole.a 7b9442c347b633f -51176 51577 1692899939778045236 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj 8aff5b19235f1a44 -51385 51579 1692899939782045298 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj 89e471fd3e984fe4 -51395 51599 1692899939802045606 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj 533c79e536c01b0c -51101 51657 1692899939858046466 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj 79730046cfde55af -51657 51772 1692899939974048248 esp-idf/esp_hid/libesp_hid.a 4488ce97b5f81d1a -51433 51797 1692899939998048616 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c.c.obj a563fd1915dacf3c -51579 51834 1692899940034049169 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj 5ec2e96ed02a2eb9 -51578 51934 1692899940126050583 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj fdc79f1519dcb4ce -51599 51963 1692899940166051197 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj cbdf58c2c1507193 -51797 52001 1692899940202051750 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj 7fb6ee98976ad605 -51772 52010 1692899940210051873 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj 6173ea6fe2345d13 -52001 52201 1692899940402054823 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj 3233197c68cbab04 -52010 52261 1692899940462055744 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj 9ab62976148d0c70 -51964 52388 1692899940586057649 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj 93f05791c2c2f419 -51834 52528 1692899940726059799 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2s.c.obj 6b4e7deeed6ee4c -52388 52544 1692899940730059861 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj 20cb4e69eeb7f826 -52201 52572 1692899940774060537 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj 5b5013c2a1c5889e -52262 52610 1692899940810061090 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj b0a29b24cdc7fa71 +12188 12565 1692899900765532394 esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj d7a60b83aacc35b0 +7065 7208 1692899895409466640 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-download b836621c4df76d7f +3155 3545 1692899891749421716 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj dc33929c230745b3 +7916 8260 1692899896461479554 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 6b419ff319ac40b1 +44098 44466 1692899932657935720 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj a764497c13bc950d +49674 49911 1692899938110019603 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj c73d7fe5f55745d +45399 45892 1692899934093957828 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj 49d9f6e6a61f1b8c +10414 10633 1692899898833508674 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj 89efcb5ea7932188 +11405 11682 1692899899881521541 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj 27c34396d2ac4f81 +8290 8537 1692899896737482942 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 7d4eb607a1ae419e +2643 4813 1692899893001437083 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj 22e152b24d5e5bd4 +46025 47586 1692899935765983556 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj 8ef09bede0d60a21 +32833 33100 1692899921301784664 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj 94d7facab62d6449 +14621 14696 1692899902897558573 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 8a7fdcf4a8425da7 +4175 4381 1692899892585431977 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj 9adec72847ffe547 +4921 5064 1696875869470863367 /home/igor/esp/experiment-ci-cd/build/.bin_timestamp 4c7337a5034d9186 +37130 37525 1692899925725839040 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj d174092b16d86788 +13702 13958 1692899902161549536 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/adc_hal.c.obj 2e7d4894a5b38660 +4397 4538 1692899892741433892 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj 20c40af05b1cf98a +7284 7470 1692899895661469734 bootloader-prefix/src/bootloader-stamp/bootloader-patch d39302137e18d517 +46689 47236 1692899935437978510 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj 743a16f5ed0e38e3 +9302 9527 1692899897729495120 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj 40db34470a2ff0a5 +31020 31580 1692899919781765983 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj 4bcc3f811dd6d49f +42191 42483 1692899930685905344 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj 3d5db15ba0a28b30 +9071 9302 1692899897501492321 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj c3ac9bda18bbf9f3 +5814 6923 1692899895121463105 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj d1708d322ceed5cd +8927 9071 1692899897273489522 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj 30cd2d71d8e86873 +18459 18776 1692899906973608630 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj c63bd43a5a10bc43 +46704 47675 1692899935873985218 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj 54b81c9dc5c20119 +3929 3943 1692900529050506870 CMakeFiles/experiment-ci-cd.elf.dir/project_elf_src_esp32.c.obj 69cf2a09464594e6 +48433 49141 1692899937338007733 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj f0dfaf490901db6 +6658 6790 1692899894989461485 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj a8fba002ee6f86b6 +7595 7980 1692899896181476118 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 8ac2fbb439faf17 +19929 20279 1692899908481627152 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj dc08608c7c9c48f +44021 44125 1692899932325930607 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj a6e214d52f88e28d +14902 14999 1692899903201562307 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj c03502831f532c3d 52528 52643 1692899940846061642 esp-idf/esp_lcd/libesp_lcd.a 5aa00d0770bc89b -52610 52888 1692899941090065390 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj 1952a0be98d329c8 -52545 52924 1692899941126065943 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj c77b63148cb77134 -52572 52959 1692899941162066495 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj c64931ae8724b82a -52644 53195 1692899941382069873 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj 2e471672f8c55b2e -52924 53351 1692899941554072515 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking_lwip.c.obj 9ced682e1106fbcb -52959 53460 1692899941658074113 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj 2b74a5d262d285dd -53195 53534 1692899941738075341 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj 68a6cca31a853cbb -53351 53591 1692899941794076200 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj e5e5fcbe42384ff8 +13295 13517 1692899901717544084 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj 45214a5c98264dab +15015 15133 1692899903333563927 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj b4459892a8499bd7 +30645 30877 1692899919073757283 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj afbb82a2c6881751 51934 53760 1692899941954078658 esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj c493bc723ce0f2ca -53591 53767 1692899941970078904 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_checksum.c.obj 658d754ce42ff0eb -53534 53790 1692899941990079210 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj b5cea515cf00098d -53460 53811 1692899942010079518 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj 7ff5a9ca2303706d -53760 53829 1692899942030079824 esp-idf/protobuf-c/libprotobuf-c.a 22c3c036860d988 -53829 53893 1692899942094080807 esp-idf/protocomm/libprotocomm.a 4216fa78fedb96ad -53812 54071 1692899942274083570 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj 8d71dcf5db2ad5b2 -53893 54090 1692899942294083877 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj bd753a95f6ab0353 -53767 54108 1692899942310084122 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj 3a4595d7359cd0d7 -53790 54143 1692899942346084676 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj 419148a82dcb7baa -54071 54223 1692899942426085904 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj 6027e38d9c297152 -54224 54264 1692899942466086518 esp-idf/espcoredump/libespcoredump.a 4beb99c500314894 -54108 54358 1692899942562087991 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj 656f974b7596615 -54090 54402 1692899942606088666 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj ed0d0a1bf7ca0325 -54143 54445 1692899942646089280 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj 9abacebfb074e828 -54264 54529 1692899942730090570 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj bb9e9b42445d04b7 +457 577 1692899888781385293 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj ed350a1569206d36 +43866 44018 1692899932221929006 /home/igor/esp/experiment-ci-cd/build/x509_crt_bundle.S b25270f24a599d95 +11863 11938 1692899900141524733 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj 7c8720b5cabfc28 54404 54534 1692899942734090632 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj d2a3884e91daf3f3 -54445 54721 1692899942922093518 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj c712e7ec9b7b7875 -54534 54866 1692899943070095789 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj 4f9d7f41ff6931a5 -54529 54889 1692899943090096096 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj f79b1d59c10937b3 -54722 55015 1692899943218098061 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj 10b59c9d365c2e5e -54866 55214 1692899943418101130 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj 444d79ff3e7a2e99 -54359 55253 1692899943454101682 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj 54425fdb3d45faf -55015 55317 1692899943518102664 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj d1f08f6d6b4bf466 -55253 55373 1692899943578103584 esp-idf/wear_levelling/libwear_levelling.a b346399e8539f527 -55214 55479 1692899943682105181 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj a0367ce4b49e5222 -55479 55891 1692899944094111503 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj da52fdadf5298675 -55373 55922 1692899944122111933 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj dfaea5481fbde7fd -54889 55940 1692899944134112117 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj 2d8824dce34ab91a -52888 55954 1692899944142112240 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj 9d9ee07f74ede711 -55317 56026 1692899944226113528 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj d71eea2ba1c5bb70 -55954 56058 1692899944254113958 esp-idf/mdns/libmdns.a 53a0d0c344331d2 -56026 56140 1692899944342115308 esp-idf/fatfs/libfatfs.a 659a652bd2b9b721 -56058 56165 1692899944366115676 esp-idf/esp_local_ctrl/libesp_local_ctrl.a a317a8bd663cafaa +4055 4216 1692899892405429768 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 973b5c7988d342d0 +50863 51094 1692899939298037861 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj 36a79c0a855e3fae +4381 4575 1692899892781434382 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_timing.c.obj f8d718bff4aa006 +13493 14244 1692899902441552974 esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj e3d57c5cfd5c8faf +13133 13276 1692899901477541137 esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj f98ebd0aade1d3a8 +220 4778 0 CMakeFiles/flash eb0b64d38518b230 +4575 4916 1692899893121438555 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj c38e3fd4b8173223 +2553 2707 1692899890913411457 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj b43a8098ad65a828 +42576 42593 1692899930797907070 esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a c926d7571e5b0c25 +4813 5433 1692899893637444889 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha1.c.obj 199b48c218c71a99 +44019 44862 1692899933045941695 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj f6337f47c365bb9c +3850 4147 1692899892353429130 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj 911ebc1de129bebb +38326 38671 1692899926873853152 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj f035edd83652dd12 +28642 28998 1692899917197734230 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj cbf116f8c585fe8e +4408 4726 1692899892929436199 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj a2a6e11aa884fc3 +34840 35790 1692899923985817652 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj 7bc0d4cf87be6870 +15929 16225 1692899904425577338 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj d0f6eff02bee6879 +9232 9655 1692899897857496692 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj e0adf6fa31cda68d +34550 34694 1692899922897804279 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj 8d6ed43690f15913 +31370 31695 1692899919897767409 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj e90ce4696a689fea +52572 52959 1692899941162066495 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj c64931ae8724b82a +8778 9053 1692899897253489277 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition_target.c.obj e6bc6029fe2efee +40326 40555 1692899928757876324 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj 88e3b83bf2486df8 +23499 23783 1692899911985670194 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj 794d8dd3652a24dd 55922 56445 1692899944646119971 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj f88e63ab97e312dc -56165 56601 1692899944802122365 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj bb423750da702612 -56140 56624 1692899944806122426 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj a744778b77d39b6e -56446 56683 1692899944886123653 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj 866eeaa25d90e0c7 -56684 56813 1692899945014125617 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj eb730cc68b997d21 -56601 56825 1692899945026125801 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj 398ccae258bc7155 -56625 56841 1692899945042126047 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj fea9be3aeedf0420 -56841 56947 1692899945150127703 esp-idf/perfmon/libperfmon.a 7027c639f77dad31 -55892 57040 1692899945238129053 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj ec31abce0dd35dbf -56825 57131 1692899945334130524 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj 73835d6db276fb22 -57041 57145 1692899945346130708 esp-idf/json/libjson.a 19e88c0993a3e501 -56947 57184 1692899945386131322 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj 5f9376be71edcb1b -55940 57231 1692899945430131997 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj 69f8cc8771dac722 -57231 57342 1692899945546133776 esp-idf/mqtt/libmqtt.a 6e17d824151d8c88 -57145 57556 1692899945746136844 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj f74ea9d7df6dcc3f -56813 57572 1692899945770137212 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj abeb66492474337d -57132 57726 1692899945926139604 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj 9d997ea2be666363 -57572 57886 1692899946086142057 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj 7758dd6880d9f3ab -57557 57956 1692899946158143162 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj 2e7ebbdd34492d66 -57184 58035 1692899946234144326 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj c397965c818c6e6c -57886 58201 1692899946402146902 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj cb16d4dfda1f38f5 -58035 58279 1692899946482148129 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj 70d822cd6856eae0 -57956 58300 1692899946502148435 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj 567ec062f9d41242 -57342 58352 1692899946542149049 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj cbd3b3581fd9a353 +38069 38402 1692899926605849858 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj bd91ab08c6f9bc3a +51599 51963 1692899940166051197 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj cbdf58c2c1507193 +32893 33444 1692899921645788891 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj 5ba63ddc4610bd5c +17260 17755 1692899905953596103 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj 54ce34464e618b3a +9527 9836 1692899898037498901 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj f8fbaa622850e0a1 +28804 29052 1692899917245734819 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj 9a35987a91c5a28c +896 1025 1692899889229390790 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj 8111f09a7e577e88 +49228 49448 1692899937650012530 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj 22f9f2a6240be923 +52959 53460 1692899941658074113 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj 2b74a5d262d285dd 58279 58382 1692899946582149662 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj d0e7a1a6d4633755 -58352 58448 1692899946650150704 esp-idf/spiffs/libspiffs.a 9298b88dfed638c4 -58201 58519 1692899946722151808 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj ba54d304de29cb88 -58301 58640 1692899946842153648 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj 84b17bd12ac73522 -58448 58654 1692899946854153832 esp-idf/dht/CMakeFiles/__idf_dht.dir/dht.c.obj a2a72a16e689de0f -57726 58742 1692899946942155181 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj d389356e028082b9 -49512 58790 1692899946970155611 esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj 85eb7cdfbefe0b99 -49 83 1692900283031088484 esp-idf/dht/libdht.a b412e65a30a98ff2 -49 104 1692900283047088710 esp-idf/wifi_provisioning/libwifi_provisioning.a a422d177af72e4bc -48 115 1692900283063088937 esp-idf/asio/libasio.a 546e956b766aaeb1 -48 154 1692899905537590994 bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -48 154 1692899905537590994 bootloader/bootloader.elf 546f90292dc26503 -48 154 1692899905537590994 bootloader/bootloader.bin 546f90292dc26503 -48 154 1692899905537590994 bootloader/bootloader.map 546f90292dc26503 -48 154 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -48 154 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.elf 546f90292dc26503 -48 154 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.bin 546f90292dc26503 -48 154 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.map 546f90292dc26503 -154 172 0 bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 -154 172 0 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 -48 132 1692899905537590994 bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -48 132 1692899905537590994 bootloader/bootloader.elf 546f90292dc26503 -48 132 1692899905537590994 bootloader/bootloader.bin 546f90292dc26503 -48 132 1692899905537590994 bootloader/bootloader.map 546f90292dc26503 -48 132 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -48 132 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.elf 546f90292dc26503 -48 132 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.bin 546f90292dc26503 -48 132 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.map 546f90292dc26503 -46 126 1692899905537590994 bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -46 126 1692899905537590994 bootloader/bootloader.elf 546f90292dc26503 -46 126 1692899905537590994 bootloader/bootloader.bin 546f90292dc26503 -46 126 1692899905537590994 bootloader/bootloader.map 546f90292dc26503 -46 126 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -46 126 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.elf 546f90292dc26503 -46 126 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.bin 546f90292dc26503 -46 126 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.map 546f90292dc26503 -47 132 1692899905537590994 bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -47 132 1692899905537590994 bootloader/bootloader.elf 546f90292dc26503 -47 132 1692899905537590994 bootloader/bootloader.bin 546f90292dc26503 -47 132 1692899905537590994 bootloader/bootloader.map 546f90292dc26503 -47 132 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -47 132 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.elf 546f90292dc26503 -47 132 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.bin 546f90292dc26503 -47 132 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.map 546f90292dc26503 -47 139 1692899905537590994 bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -47 139 1692899905537590994 bootloader/bootloader.elf 546f90292dc26503 -47 139 1692899905537590994 bootloader/bootloader.bin 546f90292dc26503 -47 139 1692899905537590994 bootloader/bootloader.map 546f90292dc26503 -47 139 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -47 139 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.elf 546f90292dc26503 -47 139 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.bin 546f90292dc26503 -47 139 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.map 546f90292dc26503 -46 127 1692899905537590994 bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -46 127 1692899905537590994 bootloader/bootloader.elf 546f90292dc26503 -46 127 1692899905537590994 bootloader/bootloader.bin 546f90292dc26503 -46 127 1692899905537590994 bootloader/bootloader.map 546f90292dc26503 -46 127 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -46 127 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.elf 546f90292dc26503 -46 127 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.bin 546f90292dc26503 -46 127 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.map 546f90292dc26503 -46 129 1692900525238454738 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj cc9a7382bc46e35e -127 142 0 bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 -127 142 0 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 -129 147 1692900525254454957 esp-idf/main/libmain.a da7fbe0937e18059 -142 184 1692900525290455449 CMakeFiles/bootloader-complete 50d824e63b5d6e74 -142 184 1692900525290455449 bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 -142 184 1692900525290455449 /home/igor/esp/experiment-ci-cd/build/CMakeFiles/bootloader-complete 50d824e63b5d6e74 -142 184 1692900525290455449 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 -147 3929 1692900528998506159 esp-idf/esp_system/ld/sections.ld e113c5f48bbea92e -147 3929 1692900528998506159 /home/igor/esp/experiment-ci-cd/build/esp-idf/esp_system/ld/sections.ld e113c5f48bbea92e -3929 3943 1692900529050506870 CMakeFiles/experiment-ci-cd.elf.dir/project_elf_src_esp32.c.obj 69cf2a09464594e6 -3944 4595 1692900529698515730 experiment-ci-cd.elf b5dc7688cc069bf -4595 4726 1692900529834517590 .bin_timestamp 4c7337a5034d9186 -4595 4726 1692900529834517590 /home/igor/esp/experiment-ci-cd/build/.bin_timestamp 4c7337a5034d9186 -4726 4777 0 esp-idf/esptool_py/CMakeFiles/app_check_size 8f6ea7f45b5fb72c -4726 4777 0 /home/igor/esp/experiment-ci-cd/build/esp-idf/esptool_py/CMakeFiles/app_check_size 8f6ea7f45b5fb72c -45 124 1692899905537590994 bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -45 124 1692899905537590994 bootloader/bootloader.elf 546f90292dc26503 -45 124 1692899905537590994 bootloader/bootloader.bin 546f90292dc26503 -45 124 1692899905537590994 bootloader/bootloader.map 546f90292dc26503 -45 124 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 -45 124 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.elf 546f90292dc26503 -45 124 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.bin 546f90292dc26503 -45 124 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.map 546f90292dc26503 +34209 34870 1692899923069806393 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj 6e05521cb9ac064d +13558 13827 1692899902029547915 esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj 389d5d69c0a57db6 +49130 49277 1692899937478009886 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj 68fa218f2e9c0a10 +14599 14726 1692899902929558966 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj 38ab6c6e2a109f27 +56 78 1692899888281379158 /home/igor/esp/experiment-ci-cd/build/project_elf_src_esp32.c aefaed129c824ff9 +40985 41584 1692899929785891475 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj 17836c8b6913a209 +2808 3328 1692899891533419065 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers.c.obj 9a9170ac41d3e60c +32632 32729 1692899920929780091 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj 78bf895713324ca2 +10466 10795 1692899898997510687 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj 50dc4ebd5655286d +28227 28495 1692899916697728086 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj 2fcb2296172db216 +57342 58352 1692899946542149049 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj cbd3b3581fd9a353 +50489 50681 1692899938882031469 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj 3d8d32fb7feb6718 +41210 41781 1692899929981894496 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj a3ff06ca0c895de1 +6191 6646 1692899894849459766 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj f5b24e2cb6ad9792 +71 602 1692899888801385538 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj 251b3a4de012a6a9 +42593 42611 1692899930813907316 esp-idf/sdmmc/libsdmmc.a 729f8527e30a03cf +13517 13702 1692899901905546392 esp-idf/hal/CMakeFiles/__idf_hal.dir/dac_hal.c.obj 5dccb610994b6435 +12340 12598 1692899900801532836 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj 14454c13af00977f +1970 2063 1692899890269403553 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj e351594fb2fad16c +56058 56165 1692899944366115676 esp-idf/esp_local_ctrl/libesp_local_ctrl.a a317a8bd663cafaa +42782 42802 1692899931005910275 esp-idf/esp_wifi/libesp_wifi.a 5c54596a4a97f9d0 +31827 32311 1692899920513774979 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj 944e4091b0426a2d +16027 16797 1692899904997584362 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj 39d0f96cceb6c4f6 +17009 17096 1692899905297588046 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.obj 540f714ad69c52e4 +35853 36413 1692899924613825371 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj e87ab1473a7bc3d4 +6790 6919 1692899895117463056 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj 7b07c998cd53c612 +11214 11625 1692899899825520853 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj ec6620e3481ed2c6 +2178 2553 1692899890757409542 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj 85d774e2238a77cf +31695 31967 1692899920169770751 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj 73b91a1e183ed6ff +4666 5096 1692899893297440716 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_bignum.c.obj 670ee5380b7c4442 +11826 11978 1692899900177525175 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj 6549dba6dacd1d44 +50474 50704 1692899938906031838 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj 56e151225bdfb667 +12055 12099 1692899900301526698 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 1466ba805483f3b8 +95 8602 1697034843909856169 build.ninja d4215ddd16e07ec5 +46 146 1692899905537590994 bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 +46 146 1692899905537590994 bootloader/bootloader.elf 546f90292dc26503 +46 146 1692899905537590994 bootloader/bootloader.bin 546f90292dc26503 +46 146 1692899905537590994 bootloader/bootloader.map 546f90292dc26503 +46 146 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 +46 146 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.elf 546f90292dc26503 +46 146 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.bin 546f90292dc26503 +46 146 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.map 546f90292dc26503 +146 164 0 bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 +146 164 0 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 +164 220 1697034844201859866 CMakeFiles/bootloader-complete 50d824e63b5d6e74 +164 220 1697034844201859866 bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 +164 220 1697034844201859866 /home/igor/esp/experiment-ci-cd/build/CMakeFiles/bootloader-complete 50d824e63b5d6e74 +164 220 1697034844201859866 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 +47 242 1697034844225860170 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj b6464ce506c0dbb8 +242 272 1697034844253860525 esp-idf/app_update/libapp_update.a 1792f6de2773218d +272 4091 1697034848033908409 esp-idf/esp_system/ld/sections.ld e113c5f48bbea92e +272 4091 1697034848033908409 /home/igor/esp/experiment-ci-cd/build/esp-idf/esp_system/ld/sections.ld e113c5f48bbea92e +4091 4732 1697034848709916977 experiment-ci-cd.elf b5dc7688cc069bf +4732 4879 1697034848861918903 .bin_timestamp 4c7337a5034d9186 +4732 4879 1697034848861918903 /home/igor/esp/experiment-ci-cd/build/.bin_timestamp 4c7337a5034d9186 +4879 4939 0 esp-idf/esptool_py/CMakeFiles/app_check_size 8f6ea7f45b5fb72c +4879 4939 0 /home/igor/esp/experiment-ci-cd/build/esp-idf/esptool_py/CMakeFiles/app_check_size 8f6ea7f45b5fb72c +54 117 0 esp-idf/esptool_py/CMakeFiles/app_check_size 8f6ea7f45b5fb72c +54 117 0 /home/igor/esp/experiment-ci-cd/build/esp-idf/esptool_py/CMakeFiles/app_check_size 8f6ea7f45b5fb72c +53 145 1692899905537590994 bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 +53 145 1692899905537590994 bootloader/bootloader.elf 546f90292dc26503 +53 145 1692899905537590994 bootloader/bootloader.bin 546f90292dc26503 +53 145 1692899905537590994 bootloader/bootloader.map 546f90292dc26503 +53 145 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 +53 145 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.elf 546f90292dc26503 +53 145 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.bin 546f90292dc26503 +53 145 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.map 546f90292dc26503 +145 161 0 bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 +145 161 0 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 +161 212 1697034858234037813 CMakeFiles/bootloader-complete 50d824e63b5d6e74 +161 212 1697034858234037813 bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 +161 212 1697034858234037813 /home/igor/esp/experiment-ci-cd/build/CMakeFiles/bootloader-complete 50d824e63b5d6e74 +161 212 1697034858234037813 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 +212 5205 0 CMakeFiles/flash eb0b64d38518b230 +212 5205 0 /home/igor/esp/experiment-ci-cd/build/CMakeFiles/flash eb0b64d38518b230 +52 113 0 esp-idf/esptool_py/CMakeFiles/app_check_size 8f6ea7f45b5fb72c +52 113 0 /home/igor/esp/experiment-ci-cd/build/esp-idf/esptool_py/CMakeFiles/app_check_size 8f6ea7f45b5fb72c +51 144 1692899905537590994 bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 +51 144 1692899905537590994 bootloader/bootloader.elf 546f90292dc26503 +51 144 1692899905537590994 bootloader/bootloader.bin 546f90292dc26503 +51 144 1692899905537590994 bootloader/bootloader.map 546f90292dc26503 +51 144 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 +51 144 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.elf 546f90292dc26503 +51 144 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.bin 546f90292dc26503 +51 144 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.map 546f90292dc26503 +144 162 0 bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 +144 162 0 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 +162 212 1697056783392149138 CMakeFiles/bootloader-complete 50d824e63b5d6e74 +162 212 1697056783392149138 bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 +162 212 1697056783392149138 /home/igor/esp/experiment-ci-cd/build/CMakeFiles/bootloader-complete 50d824e63b5d6e74 +162 212 1697056783392149138 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 +53 117 0 esp-idf/esptool_py/CMakeFiles/app_check_size 8f6ea7f45b5fb72c +53 117 0 /home/igor/esp/experiment-ci-cd/build/esp-idf/esptool_py/CMakeFiles/app_check_size 8f6ea7f45b5fb72c +52 139 1692899905537590994 bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 +52 139 1692899905537590994 bootloader/bootloader.elf 546f90292dc26503 +52 139 1692899905537590994 bootloader/bootloader.bin 546f90292dc26503 +52 139 1692899905537590994 bootloader/bootloader.map 546f90292dc26503 +52 139 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 546f90292dc26503 +52 139 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.elf 546f90292dc26503 +52 139 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.bin 546f90292dc26503 +52 139 1692899905537590994 /home/igor/esp/experiment-ci-cd/build/bootloader/bootloader.map 546f90292dc26503 +140 156 0 bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 +140 156 0 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c048cb0129878596 +156 203 1697056788211713065 CMakeFiles/bootloader-complete 50d824e63b5d6e74 +156 203 1697056788211713065 bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 +156 203 1697056788211713065 /home/igor/esp/experiment-ci-cd/build/CMakeFiles/bootloader-complete 50d824e63b5d6e74 +156 203 1697056788211713065 /home/igor/esp/experiment-ci-cd/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 50d824e63b5d6e74 +203 4915 0 CMakeFiles/flash eb0b64d38518b230 +203 4915 0 /home/igor/esp/experiment-ci-cd/build/CMakeFiles/flash eb0b64d38518b230 diff --git a/build/CMakeFiles/git-data/head-ref b/build/CMakeFiles/git-data/head-ref index 66eeaa6..32951d6 100644 --- a/build/CMakeFiles/git-data/head-ref +++ b/build/CMakeFiles/git-data/head-ref @@ -1 +1 @@ -b2c698fed2399a005ecff50b6affeb2c0bea6b84 +3c954cb181b177ae260530f868737c8d9a9be790 diff --git a/build/bootloader/.ninja_log b/build/bootloader/.ninja_log index 8136ad4..30e51be 100644 --- a/build/bootloader/.ninja_log +++ b/build/bootloader/.ninja_log @@ -1,221 +1,151 @@ # ninja log v5 -3372 4021 1692306554087411371 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj 5acf673f20b8d26c -3562 3802 1692306553867408437 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 7ddaf9d5547e961f -3351 3688 1692306553755406944 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj ad9d137a6da9b6b5 -2822 3351 1692306553415402410 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj 3bb34ea8aac2e89d -4035 4447 1692306554511417026 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 846bd6525a17850c -4022 4459 1692306554511417026 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/compare_set.c.obj b45d537841ebbff6 -2882 3002 1692306553067397768 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj 77f704a6560de075 -956 1392 1692306551443376110 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj ebd59f436a4da922 -5396 5687 1692306555751433563 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 1a4e5731d498a05e -3002 3195 1692306553259400329 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj 623ecbb46692be3d -1706 2892 1692306552951396221 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 85d538e0136b92fa -2392 2882 1692306552947396168 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj dd52cbb62facf09 -2238 2677 1692306552743393447 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 213bea144e41295b -938 1737 1692306551799380858 esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj abdd9fd912ea0b8e -6629 6704 1692306556771447166 esp-idf/efuse/libefuse.a d0191ece836d243c -2286 2641 1692306552707392968 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj f13f7f96e84d6932 -2641 3372 1692306553415402410 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj 11f46d6ed433b1ec -839 1365 1692306551431375951 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj 2b658d80286f5b87 -1727 2392 1692306552455389607 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj a249f07e2c6c36e5 -236 392 1692306550439362721 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj ac1dc5ac559686dd -1737 2238 1692306552299387526 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 8689ba19547c985f -1677 2164 1692306552231386620 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj 73bd8df606a80bae -4447 5374 1692306555439429402 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj 4eb0bb67be29337f -2892 3235 1692306553299400863 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj bf631f0878d6e385 -59 336 1692306550395362134 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj b96188138c0d518c -71 236 1692306550299360854 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 46a49ddce224359 -1365 2286 1692306552351388220 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj 34daf6aad1cc5494 -5559 5654 1692306555707432976 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 8cbeddd26de6f977 -1392 1727 1692306551775380538 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 4b0920058d912fdb -1241 1677 1692306551743380112 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 61e47a15bfaa8354 -1077 1380 1692306551443376110 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj ae2e9e84599d2e25 -475 657 1692306550723366509 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj 5e9d04c8f0dbde64 -3235 3558 1692306553611405023 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj 66f7789f0b8f892b -849 1241 1692306551307374297 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 5a9a7c880e4e870e -336 475 1692306550539364055 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj 2855d313ca1b087f -134 385 1692306550431362615 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj c1fc9154810163af -393 553 1692306550619365122 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj 9f1a3d5bd677bfd8 -14 134 1692306550199359521 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 609d5fc7f0c9477e -366 579 1692306550639365389 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj 41b2f07d5d7f025c -14 83 1692306550103358240 /home/igor/esp/experiment-ci-cd/build/bootloader/project_elf_src_esp32.c 4b70d3bede70718c -579 849 1692306550907368963 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj aba19b12c277f1ce -3689 5137 1692306555203426255 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 26f5fd143b228468 -65 349 1692306550407362294 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj a96528e4d97f551f -796 1077 1692306551143372110 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 48d63469e967a3d1 -3195 4235 1692306554299414199 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj 508ceed69e9bf782 -4459 5230 1692306555291427428 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj 6e3b104c0987e44f -5419 6206 1692306556267440444 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b5574a85ecff170a -451 529 1692306550591364748 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj 6ef2a6e631801bab -1380 1706 1692306551771380485 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj bb8b067f1ee61aed -3899 4035 1692306554091411425 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 9ec2199be4a575ab -2677 2978 1692306553043397449 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj e84abad36efef3eb -4235 5309 1692306555347428175 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj bc01c16695969461 -5603 5872 1692306555939436070 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 643427f2a78fc21f -386 572 1692306550639365389 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj bf3ddd7d0eda5b88 -5137 5396 1692306555459429669 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj e54a76d39cdf103c -5230 5497 1692306555563431056 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 50aa1ffb7a8c2b49 -3406 4169 1692306554235413345 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 51008736501e74c9 -6506 6628 1692306556695446152 esp-idf/esp_system/libesp_system.a 26a7874ba4822a4b -5309 5419 1692306555475429882 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj a3ee6e9dfb1b27d8 -5575 6046 1692306556111438364 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj eeeca0af0c1136ae -4903 5559 1692306555623431856 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj 24dbece598d0d15e -4169 4475 1692306554531417293 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 9370445a89918bf4 -6970 7024 1692306557091451433 esp-idf/xtensa/libxtensa.a 4518376a5ccf850b -5374 5543 1692306555607431643 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 3688de17f918ca50 -6704 6784 1692306556851448233 esp-idf/bootloader_support/libbootloader_support.a 1f7ecb36be0d46d5 -9 66 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d -4475 4903 1692306554967423107 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_pm.c.obj cbe2521a44c7ce57 -6341 6404 1692306556467443112 esp-idf/esp_common/libesp_common.a 5ad951e038e0f3a9 -5636 5931 1692306555995436817 esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj c633089cb62daa50 -9 66 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d -6859 6928 1692306556995450153 esp-idf/micro-ecc/libmicro-ecc.a 6ca8516f5487aa1 -6046 6183 1692306556251440231 esp-idf/log/liblog.a 1ab77e6a81776eb1 -349 451 1692306550515363735 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj 52f79de3a55c3b9b -4730 5575 1692306555631431963 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj d74031918ca49fd9 -5497 5603 1692306555667432443 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tjpgd.c.obj c02fb7c0f6b96e42 -6784 6859 1692306556923449193 esp-idf/hal/libhal.a 9bab2245962b7ec3 -7469 7799 1692306557863461729 /home/igor/esp/experiment-ci-cd/build/bootloader/.bin_timestamp ec56f74b86788600 -5543 5636 1692306555703432923 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj ef7d5ce198ed98e8 -6928 6970 1692306557035450687 esp-idf/soc/libsoc.a 4430bce9f7c72887 -545 812 1692306550875368536 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj d12dabd1398b7c3b -572 760 1692306550827367896 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sigmadelta_periph.c.obj 9b6168f0d5ffb0f1 -2164 2458 1692306552523390514 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 7ee0d677f8019f16 -760 3899 1692306553959409664 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj a852a347db76ba1 -812 956 1692306551007370296 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 41b1474ac8f80468 -6206 6341 1692306556407442312 esp-idf/esp_rom/libesp_rom.a a42c1cd3ad26edc7 -74 325 1692306550391362081 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj 9bcd40ae9f27e2a2 -6404 6506 1692306556571444499 esp-idf/esp_hw_support/libesp_hw_support.a 23a07048546d77bb -3802 4730 1692306554795420814 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj 69a4e6733f22d836 -7469 7799 1692306557863461729 .bin_timestamp ec56f74b86788600 -529 637 1692306550703366242 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj c1e3ab94fc3f0cdc -7024 7117 1692306557183452660 esp-idf/main/libmain.a 1cf045823995f7f -83 181 1692306550247360160 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj ad21212bf82ef76a -325 545 1692306550599364855 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj 490b828ad2f15921 -7117 7468 1692306557531457302 bootloader.elf 90212fbd4c3e85c4 -657 796 1692306550863368376 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj deeca8dc789f36ae -730 938 1692306551003370243 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj c373e32fafea8f78 -2978 3406 1692306553471403156 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj 805652b3f32c3ab -14 83 1692306550103358240 project_elf_src_esp32.c 4b70d3bede70718c -5654 5984 1692306556051437564 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj 8781969781f4fb07 -637 839 1692306550903368909 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj 1e20f664eca36835 -2459 2822 1692306552887395368 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj f3e3a0e67d3ecec0 -553 730 1692306550795367469 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj 95b8f1769e944ccc -181 366 1692306550427362561 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj 1ecef08b35a8955e -8 70 1692899905681592762 project_elf_src_esp32.c 4b70d3bede70718c -8 70 1692899905681592762 /home/igor/esp/experiment-ci-cd/build/bootloader/project_elf_src_esp32.c 4b70d3bede70718c -8 116 1692899905725593302 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 609d5fc7f0c9477e -70 165 1692899905777593941 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj ad21212bf82ef76a -48 187 1692899905797594187 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj 9bcd40ae9f27e2a2 -31 214 1692899905825594531 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 46a49ddce224359 -9 237 1692899905845594777 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj b96188138c0d518c -11 261 1692899905873595120 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj a96528e4d97f551f 165 311 1692899905921595710 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj 1ecef08b35a8955e -116 337 1692899905945596005 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj c1fc9154810163af -237 369 1692899905981596447 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj 2855d313ca1b087f -187 384 1692899905981596447 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj ac1dc5ac559686dd +489 621 1692899906233599542 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj 95b8f1769e944ccc +2438 2709 1692899908317625137 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj f3e3a0e67d3ecec0 +588 859 1692899906453602244 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj 1e20f664eca36835 +5295 5541 1692899911153659973 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj 8781969781f4fb07 +8 70 1692899905681592762 project_elf_src_esp32.c 4b70d3bede70718c +3023 3414 1692899909025633833 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj 805652b3f32c3ab +621 836 1692899906445602146 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj c373e32fafea8f78 +599 798 1692899906409601703 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj deeca8dc789f36ae +6468 6716 1692899912325674371 bootloader.elf 90212fbd4c3e85c4 214 396 1692899906001596692 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj 490b828ad2f15921 -311 436 1692899906045597233 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj 41b2f07d5d7f025c -262 476 1692899906085597724 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj 52f79de3a55c3b9b -384 489 1692899906097597871 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj 6ef2a6e631801bab -337 507 1692899906117598117 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj bf3ddd7d0eda5b88 -369 511 1692899906121598166 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj 9f1a3d5bd677bfd8 -397 588 1692899906197599100 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj 5e9d04c8f0dbde64 +70 165 1692899905777593941 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj ad21212bf82ef76a +6437 6468 1692899912077671324 esp-idf/main/libmain.a 1cf045823995f7f 436 599 1692899906201599149 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj c1e3ab94fc3f0cdc -489 621 1692899906233599542 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj 95b8f1769e944ccc +6716 7184 1692899912793680120 .bin_timestamp ec56f74b86788600 +3701 4325 1692899909933644987 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj 69a4e6733f22d836 +5896 6007 1692899911613665623 esp-idf/esp_hw_support/libesp_hw_support.a 23a07048546d77bb +48 187 1692899905797594187 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj 9bcd40ae9f27e2a2 +5685 5807 1692899911417663216 esp-idf/esp_rom/libesp_rom.a a42c1cd3ad26edc7 +808 1043 1692899906653604700 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 41b1474ac8f80468 +686 3960 1692899909553640319 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj a852a347db76ba1 +1939 2171 1692899907781618554 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 7ee0d677f8019f16 508 686 1692899906297600328 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sigmadelta_periph.c.obj 9b6168f0d5ffb0f1 -599 798 1692899906409601703 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj deeca8dc789f36ae 476 808 1692899906417601801 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj d12dabd1398b7c3b -512 817 1692899906421601850 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj aba19b12c277f1ce -621 836 1692899906445602146 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj c373e32fafea8f78 -588 859 1692899906453602244 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj 1e20f664eca36835 -808 1043 1692899906653604700 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 41b1474ac8f80468 -798 1051 1692899906661604798 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 48d63469e967a3d1 -836 1212 1692899906821606763 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 5a9a7c880e4e870e -817 1328 1692899906937608188 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj 2b658d80286f5b87 -859 1463 1692899907073609858 esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj abdd9fd912ea0b8e -1051 1539 1692899907149610792 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj ae2e9e84599d2e25 -1043 1623 1692899907233611823 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj ebd59f436a4da922 -1463 1632 1692899907237611872 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj bb8b067f1ee61aed -1212 1643 1692899907245611971 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 61e47a15bfaa8354 +6352 6410 1692899912021670636 esp-idf/soc/libsoc.a 4430bce9f7c72887 +5098 5295 1692899910905656926 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj ef7d5ce198ed98e8 +6716 7184 1692899912793680120 /home/igor/esp/experiment-ci-cd/build/bootloader/.bin_timestamp ec56f74b86788600 +6207 6258 1692899911869668769 esp-idf/hal/libhal.a 9bab2245962b7ec3 +4996 5097 1692899910709654519 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tjpgd.c.obj c02fb7c0f6b96e42 +4325 4996 1692899910605653241 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj d74031918ca49fd9 +262 476 1692899906085597724 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj 52f79de3a55c3b9b +5566 5625 1692899911237661005 esp-idf/log/liblog.a 1ab77e6a81776eb1 +6258 6352 1692899911961669899 esp-idf/micro-ecc/libmicro-ecc.a 6ca8516f5487aa1 +7 61 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +5197 5516 1692899911125659629 esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj c633089cb62daa50 +5807 5896 1692899911505664297 esp-idf/esp_common/libesp_common.a 5ad951e038e0f3a9 +4272 4468 1692899910077646755 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_pm.c.obj cbe2521a44c7ce57 +7 61 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +6115 6206 1692899911817668130 esp-idf/bootloader_support/libbootloader_support.a 1f7ecb36be0d46d5 +4808 4933 1692899910545652503 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 3688de17f918ca50 +6410 6437 1692899912049670980 esp-idf/xtensa/libxtensa.a 4518376a5ccf850b +4013 4229 1692899909841643856 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 9370445a89918bf4 +4468 5135 1692899910733654814 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj 24dbece598d0d15e +5120 5535 1692899911145659875 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj eeeca0af0c1136ae 1539 1880 1692899907489614968 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 4b0920058d912fdb -1623 1939 1692899907549615705 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj 73bd8df606a80bae 1328 2168 1692899907777618505 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj 34daf6aad1cc5494 -1939 2171 1692899907781618554 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 7ee0d677f8019f16 -1880 2302 1692899907913620176 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 8689ba19547c985f -2168 2438 1692899908049621846 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 213bea144e41295b +5116 5197 1692899910805655698 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 8cbeddd26de6f977 2171 2668 1692899908277624645 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj f13f7f96e84d6932 -2438 2709 1692899908317625137 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj f3e3a0e67d3ecec0 -1632 2723 1692899908333625334 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 85d538e0136b92fa -2302 2941 1692899908553628036 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj dd52cbb62facf09 -2709 3004 1692899908609628723 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj e84abad36efef3eb +1880 2302 1692899907913620176 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 8689ba19547c985f +1623 1939 1692899907549615705 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj 73bd8df606a80bae +4206 4808 1692899910417650931 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj 4eb0bb67be29337f +3004 3249 1692899908861631819 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj bf631f0878d6e385 +31 214 1692899905825594531 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 46a49ddce224359 +9 237 1692899905845594777 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj b96188138c0d518c +3250 3716 1692899909325637518 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj 5acf673f20b8d26c +187 384 1692899905981596447 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj ac1dc5ac559686dd 1644 3023 1692899908617628822 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj a249f07e2c6c36e5 -2941 3043 1692899908649629215 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj 77f704a6560de075 +817 1328 1692899906937608188 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj 2b658d80286f5b87 2668 3092 1692899908701629854 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj 11f46d6ed433b1ec -2723 3109 1692899908717630050 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj 3bb34ea8aac2e89d -3043 3118 1692899908729630197 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj 623ecbb46692be3d -3004 3249 1692899908861631819 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj bf631f0878d6e385 -3109 3355 1692899908965633096 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj 66f7789f0b8f892b 3118 3380 1692899908989633390 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj ad9d137a6da9b6b5 -3023 3414 1692899909025633833 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj 805652b3f32c3ab 3380 3701 1692899909313637371 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 7ddaf9d5547e961f -3250 3716 1692899909325637518 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj 5acf673f20b8d26c -3716 3933 1692899909545640220 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 9ec2199be4a575ab -686 3960 1692899909553640319 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj a852a347db76ba1 -3092 4013 1692899909621641154 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj 508ceed69e9bf782 +3043 3118 1692899908729630197 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj 623ecbb46692be3d +1632 2723 1692899908333625334 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 85d538e0136b92fa +6057 6115 1692899911725666999 esp-idf/efuse/libefuse.a d0191ece836d243c +859 1463 1692899907073609858 esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj abdd9fd912ea0b8e +2168 2438 1692899908049621846 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 213bea144e41295b 3355 4085 1692899909693642038 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 51008736501e74c9 +6007 6057 1692899911669666312 esp-idf/esp_system/libesp_system.a 26a7874ba4822a4b +4912 5119 1692899910725654715 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 1a4e5731d498a05e +2941 3043 1692899908649629215 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj 77f704a6560de075 +1043 1623 1692899907233611823 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj ebd59f436a4da922 +116 337 1692899905945596005 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj c1fc9154810163af +2723 3109 1692899908717630050 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj 3bb34ea8aac2e89d 3933 4206 1692899909817643562 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/compare_set.c.obj b45d537841ebbff6 -4013 4229 1692899909841643856 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 9370445a89918bf4 -3414 4272 1692899909881644348 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 26f5fd143b228468 -3701 4325 1692899909933644987 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj 69a4e6733f22d836 -4272 4468 1692899910077646755 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_pm.c.obj cbe2521a44c7ce57 3960 4493 1692899910105647099 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 846bd6525a17850c +2302 2941 1692899908553628036 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj dd52cbb62facf09 +1212 1643 1692899907245611971 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 61e47a15bfaa8354 +1051 1539 1692899907149610792 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj ae2e9e84599d2e25 +397 588 1692899906197599100 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj 5e9d04c8f0dbde64 4229 4780 1692899910385650539 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj 6e3b104c0987e44f +4933 5685 1692899911289661644 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b5574a85ecff170a +384 489 1692899906097597871 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj 6ef2a6e631801bab +1463 1632 1692899907237611872 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj bb8b067f1ee61aed +3109 3355 1692899908965633096 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj 66f7789f0b8f892b +836 1212 1692899906821606763 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 5a9a7c880e4e870e +237 369 1692899905981596447 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj 2855d313ca1b087f +369 511 1692899906121598166 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj 9f1a3d5bd677bfd8 +8 116 1692899905725593302 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 609d5fc7f0c9477e +311 436 1692899906045597233 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj 41b2f07d5d7f025c +512 817 1692899906421601850 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj aba19b12c277f1ce +8 70 1692899905681592762 /home/igor/esp/experiment-ci-cd/build/bootloader/project_elf_src_esp32.c 4b70d3bede70718c +3414 4272 1692899909881644348 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 26f5fd143b228468 +11 261 1692899905873595120 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj a96528e4d97f551f +798 1051 1692899906661604798 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 48d63469e967a3d1 +3092 4013 1692899909621641154 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj 508ceed69e9bf782 +3716 3933 1692899909545640220 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 9ec2199be4a575ab +2709 3004 1692899908609628723 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj e84abad36efef3eb +5135 5566 1692899911177660268 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 643427f2a78fc21f +4085 5443 1692899911053658745 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj bc01c16695969461 +337 507 1692899906117598117 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj bf3ddd7d0eda5b88 +4780 5116 1692899910713654568 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 50aa1ffb7a8c2b49 4493 4795 1692899910405650784 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj e54a76d39cdf103c -4206 4808 1692899910417650931 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj 4eb0bb67be29337f 4795 4912 1692899910521652209 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj a3ee6e9dfb1b27d8 -4808 4933 1692899910545652503 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 3688de17f918ca50 -4325 4996 1692899910605653241 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj d74031918ca49fd9 -4996 5097 1692899910709654519 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tjpgd.c.obj c02fb7c0f6b96e42 -4780 5116 1692899910713654568 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 50aa1ffb7a8c2b49 -4912 5119 1692899910725654715 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 1a4e5731d498a05e -4468 5135 1692899910733654814 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj 24dbece598d0d15e -5116 5197 1692899910805655698 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 8cbeddd26de6f977 -5098 5295 1692899910905656926 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj ef7d5ce198ed98e8 -4085 5443 1692899911053658745 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj bc01c16695969461 -5197 5516 1692899911125659629 esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj c633089cb62daa50 -5120 5535 1692899911145659875 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj eeeca0af0c1136ae -5295 5541 1692899911153659973 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj 8781969781f4fb07 -5135 5566 1692899911177660268 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 643427f2a78fc21f -5566 5625 1692899911237661005 esp-idf/log/liblog.a 1ab77e6a81776eb1 -4933 5685 1692899911289661644 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b5574a85ecff170a -5685 5807 1692899911417663216 esp-idf/esp_rom/libesp_rom.a a42c1cd3ad26edc7 -5807 5896 1692899911505664297 esp-idf/esp_common/libesp_common.a 5ad951e038e0f3a9 -5896 6007 1692899911613665623 esp-idf/esp_hw_support/libesp_hw_support.a 23a07048546d77bb -6007 6057 1692899911669666312 esp-idf/esp_system/libesp_system.a 26a7874ba4822a4b -6057 6115 1692899911725666999 esp-idf/efuse/libefuse.a d0191ece836d243c -6115 6206 1692899911817668130 esp-idf/bootloader_support/libbootloader_support.a 1f7ecb36be0d46d5 -6207 6258 1692899911869668769 esp-idf/hal/libhal.a 9bab2245962b7ec3 -6258 6352 1692899911961669899 esp-idf/micro-ecc/libmicro-ecc.a 6ca8516f5487aa1 -6352 6410 1692899912021670636 esp-idf/soc/libsoc.a 4430bce9f7c72887 -6410 6437 1692899912049670980 esp-idf/xtensa/libxtensa.a 4518376a5ccf850b -6437 6468 1692899912077671324 esp-idf/main/libmain.a 1cf045823995f7f -6468 6716 1692899912325674371 bootloader.elf 90212fbd4c3e85c4 -6716 7184 1692899912793680120 .bin_timestamp ec56f74b86788600 -6716 7184 1692899912793680120 /home/igor/esp/experiment-ci-cd/build/bootloader/.bin_timestamp ec56f74b86788600 -7184 7371 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d -7184 7371 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d -11 80 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d -11 80 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d -7 60 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d -7 60 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d -6 58 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d -6 58 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +10 2939 1696363333535879988 build.ninja f86355c9dd900f1b +6 55 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +6 55 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +6 71 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +6 71 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +13 101 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +13 101 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +10 81 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +10 81 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +13 66 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +13 66 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +6 63 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +6 63 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +12 63 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +12 63 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +6 76 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +6 76 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +15 75 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +15 75 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d 7 65 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d 7 65 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d -10 70 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d -10 70 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d -6 58 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d -6 58 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d -7 61 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d -7 61 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +17 90 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +17 90 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +10 81 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +10 81 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +9 65 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +9 65 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +7 81 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +7 81 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +9 71 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +9 71 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +10 75 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +10 75 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +11 68 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +11 68 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +7 64 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +7 64 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +9 76 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +9 76 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +14 75 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +14 75 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +8 68 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +8 68 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +8 67 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +8 67 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +9 63 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d +9 63 0 /home/igor/esp/experiment-ci-cd/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size d6c7a8fe31d3f47d diff --git a/build/build.ninja b/build/build.ninja index b354d64..c15d7eb 100644 --- a/build/build.ninja +++ b/build/build.ninja @@ -117,8 +117,6 @@ build CMakeFiles/experiment-ci-cd.elf.dir/project_elf_src_esp32.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/app_trace/include -I/home/igor/esp/esp-idf/components/esp_eth/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/asio/asio/asio/include -I/home/igor/esp/esp-idf/components/asio/port/include -I/home/igor/esp/esp-idf/components/unity/include -I/home/igor/esp/esp-idf/components/unity/unity/src -I/home/igor/esp/esp-idf/components/cmock/CMock/src -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/esp_adc_cal/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/esp_hid/include -I/home/igor/esp/esp-idf/components/tcp_transport/include -I/home/igor/esp/esp-idf/components/esp_http_client/include -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/esp_https_ota/include -I/home/igor/esp/esp-idf/components/esp_lcd/include -I/home/igor/esp/esp-idf/components/esp_lcd/interface -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/mdns/include -I/home/igor/esp/esp-idf/components/esp_local_ctrl/include -I/home/igor/esp/esp-idf/components/esp_psram/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/esp_serial_slave_link/include -I/home/igor/esp/esp-idf/components/espcoredump/include -I/home/igor/esp/esp-idf/components/espcoredump/include/port/xtensa -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/fatfs/diskio -I/home/igor/esp/esp-idf/components/fatfs/vfs -I/home/igor/esp/esp-idf/components/fatfs/src -I/home/igor/esp/esp-idf/components/idf_test/include -I/home/igor/esp/esp-idf/components/idf_test/include/esp32 -I/home/igor/esp/esp-idf/components/ieee802154/include -I/home/igor/esp/esp-idf/components/json/cJSON -I/home/igor/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/igor/esp/esp-idf/components/perfmon/include -I/home/igor/esp/esp-idf/components/spiffs/include -I/home/igor/esp/esp-idf/components/ulp/ulp_common/include -I/home/igor/esp/esp-idf/components/ulp/ulp_common/include/esp32 -I/home/igor/esp/esp-idf/components/wifi_provisioning/include -I/home/igor/esp/experiment-ci-cd/main -I/home/igor/esp/experiment-ci-cd/components/esp_idf_lib_helpers -I/home/igor/esp/experiment-ci-cd/components/dht OBJECT_DIR = CMakeFiles/experiment-ci-cd.elf.dir OBJECT_FILE_DIR = CMakeFiles/experiment-ci-cd.elf.dir - TARGET_COMPILE_PDB = CMakeFiles/experiment-ci-cd.elf.dir/ - TARGET_PDB = experiment-ci-cd.elf.pdb # ============================================================================= @@ -134,9 +132,8 @@ build experiment-ci-cd.elf: CXX_EXECUTABLE_LINKER__experiment-ci-cd.2eelf_ CMake OBJECT_DIR = CMakeFiles/experiment-ci-cd.elf.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = CMakeFiles/experiment-ci-cd.elf.dir/ TARGET_FILE = experiment-ci-cd.elf - TARGET_PDB = experiment-ci-cd.elf.pdb + TARGET_PDB = experiment-ci-cd.elf.dbg ############################################# @@ -528,8 +525,6 @@ build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj: C_COMPILER____idf_xt INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir OBJECT_FILE_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir - TARGET_COMPILE_PDB = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/__idf_xtensa.pdb - TARGET_PDB = esp-idf/xtensa/libxtensa.pdb build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj: C_COMPILER____idf_xtensa_unscanned_ /home/igor/esp/esp-idf/components/xtensa/xt_trax.c || cmake_object_order_depends_target___idf_xtensa DEP_FILE = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj.d @@ -537,8 +532,6 @@ build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj: C_COMPILER____id INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir OBJECT_FILE_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir - TARGET_COMPILE_PDB = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/__idf_xtensa.pdb - TARGET_PDB = esp-idf/xtensa/libxtensa.pdb build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj: C_COMPILER____idf_xtensa_unscanned_ /home/igor/esp/esp-idf/components/xtensa/xtensa_intr.c || cmake_object_order_depends_target___idf_xtensa DEP_FILE = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj.d @@ -546,8 +539,6 @@ build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj: C_COMPILER__ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir OBJECT_FILE_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir - TARGET_COMPILE_PDB = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/__idf_xtensa.pdb - TARGET_PDB = esp-idf/xtensa/libxtensa.pdb build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj: ASM_COMPILER____idf_xtensa_unscanned_ /home/igor/esp/esp-idf/components/xtensa/xtensa_intr_asm.S || cmake_object_order_depends_target___idf_xtensa DEP_FILE = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj.d @@ -555,8 +546,6 @@ build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj: ASM_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir OBJECT_FILE_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir - TARGET_COMPILE_PDB = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/__idf_xtensa.pdb - TARGET_PDB = esp-idf/xtensa/libxtensa.pdb # ============================================================================= @@ -571,9 +560,8 @@ build esp-idf/xtensa/libxtensa.a: C_STATIC_LIBRARY_LINKER____idf_xtensa_ esp-idf OBJECT_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/__idf_xtensa.pdb TARGET_FILE = esp-idf/xtensa/libxtensa.a - TARGET_PDB = esp-idf/xtensa/libxtensa.pdb + TARGET_PDB = xtensa.a.dbg ############################################# @@ -660,8 +648,6 @@ build esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir OBJECT_FILE_DIR = esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir - TARGET_COMPILE_PDB = esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/__idf_esp_ringbuf.pdb - TARGET_PDB = esp-idf/esp_ringbuf/libesp_ringbuf.pdb # ============================================================================= @@ -676,9 +662,8 @@ build esp-idf/esp_ringbuf/libesp_ringbuf.a: C_STATIC_LIBRARY_LINKER____idf_esp_r OBJECT_DIR = esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/__idf_esp_ringbuf.pdb TARGET_FILE = esp-idf/esp_ringbuf/libesp_ringbuf.a - TARGET_PDB = esp-idf/esp_ringbuf/libesp_ringbuf.pdb + TARGET_PDB = esp_ringbuf.a.dbg ############################################# @@ -765,8 +750,6 @@ build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/efuse/private_include -I/home/igor/esp/esp-idf/components/efuse/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_PDB = esp-idf/efuse/libefuse.pdb build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/igor/esp/esp-idf/components/efuse/esp32/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj.d @@ -774,8 +757,6 @@ build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/efuse/private_include -I/home/igor/esp/esp-idf/components/efuse/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_PDB = esp-idf/efuse/libefuse.pdb build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/igor/esp/esp-idf/components/efuse/esp32/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj.d @@ -783,8 +764,6 @@ build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/efuse/private_include -I/home/igor/esp/esp-idf/components/efuse/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_PDB = esp-idf/efuse/libefuse.pdb build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/igor/esp/esp-idf/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj.d @@ -792,8 +771,6 @@ build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/efuse/private_include -I/home/igor/esp/esp-idf/components/efuse/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_PDB = esp-idf/efuse/libefuse.pdb build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/igor/esp/esp-idf/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj.d @@ -801,8 +778,6 @@ build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/efuse/private_include -I/home/igor/esp/esp-idf/components/efuse/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_PDB = esp-idf/efuse/libefuse.pdb build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/igor/esp/esp-idf/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj.d @@ -810,8 +785,6 @@ build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/efuse/private_include -I/home/igor/esp/esp-idf/components/efuse/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_PDB = esp-idf/efuse/libefuse.pdb build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/igor/esp/esp-idf/components/efuse/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj.d @@ -819,8 +792,6 @@ build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/efuse/private_include -I/home/igor/esp/esp-idf/components/efuse/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_PDB = esp-idf/efuse/libefuse.pdb # ============================================================================= @@ -835,9 +806,8 @@ build esp-idf/efuse/libefuse.a: C_STATIC_LIBRARY_LINKER____idf_efuse_ esp-idf/ef OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb TARGET_FILE = esp-idf/efuse/libefuse.a - TARGET_PDB = esp-idf/efuse/libefuse.pdb + TARGET_PDB = efuse.a.dbg ############################################# @@ -1011,8 +981,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj: C_COMPILER____ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/gpio/rtc_io.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj.d @@ -1020,8 +988,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj: C_COMPILER__ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/gptimer.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer.c.obj.d @@ -1029,8 +995,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer.c.obj: C_COMPILER____id INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/i2c.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj.d @@ -1038,8 +1002,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj: C_COMPILER____idf_dr INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/ledc.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj.d @@ -1047,8 +1009,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj: C_COMPILER____idf_d INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/sdspi_crc.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj.d @@ -1056,8 +1016,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj: C_COMPILER____ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/sdspi_host.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj.d @@ -1065,8 +1023,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/sdspi_transaction.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj.d @@ -1074,8 +1030,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/spi_common.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj.d @@ -1083,8 +1037,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/spi_master.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj.d @@ -1092,8 +1044,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/spi_slave.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj.d @@ -1101,8 +1051,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj: C_COMPILER____ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_bus_lock.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/spi_bus_lock.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_bus_lock.c.obj.d @@ -1110,8 +1058,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_bus_lock.c.obj: C_COMPILER_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/uart.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj.d @@ -1119,8 +1065,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj: C_COMPILER____idf_d INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/deprecated/timer_legacy.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj.d @@ -1128,8 +1072,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/adc_single.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/adc_single.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/adc_single.c.obj.d @@ -1137,8 +1079,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/adc_single.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/adc.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj.d @@ -1146,8 +1086,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj: C_COMPILER____idf_dr INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/mcpwm.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj.d @@ -1155,8 +1093,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj: C_COMPILER____idf_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/sigmadelta_gpio.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/gpio/sigmadelta_gpio.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/sigmadelta_gpio.c.obj.d @@ -1164,8 +1100,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/sigmadelta_gpio.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/rmt/rmt_common.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj.d @@ -1173,8 +1107,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/rmt/rmt_encoder.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj.d @@ -1182,8 +1114,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/rmt/rmt_rx.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj.d @@ -1191,8 +1121,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/rmt/rmt_tx.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj.d @@ -1200,8 +1128,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/deprecated/rmt_legacy.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj.d @@ -1209,8 +1135,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/pulse_cnt.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/pulse_cnt.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/pulse_cnt.c.obj.d @@ -1218,8 +1142,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/pulse_cnt.c.obj: C_COMPILER____ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/deprecated/pcnt_legacy.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj.d @@ -1227,8 +1149,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/sdmmc_transaction.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj.d @@ -1236,8 +1156,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/sdmmc_host.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj.d @@ -1245,8 +1163,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/i2s/i2s_common.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj.d @@ -1254,8 +1170,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/i2s/i2s_std.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj.d @@ -1263,8 +1177,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj: C_COMPILER__ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/deprecated/i2s_legacy.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj.d @@ -1272,8 +1184,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/i2s/i2s_pdm.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj.d @@ -1281,8 +1191,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj: C_COMPILER__ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/twai.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/twai.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/twai.c.obj.d @@ -1290,8 +1198,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/twai.c.obj: C_COMPILER____idf_d INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/dac_common.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/dac_common.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/dac_common.c.obj.d @@ -1299,8 +1205,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/dac_common.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/sdio_slave.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj.d @@ -1308,8 +1212,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/touch_sensor_common.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj.d @@ -1317,8 +1219,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/esp32/touch_sensor.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj.d @@ -1326,8 +1226,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/adc.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/esp32/adc.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/adc.c.obj.d @@ -1335,8 +1233,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/adc.c.obj: C_COMPILER____ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/adc_deprecated.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/adc_deprecated.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/adc_deprecated.c.obj.d @@ -1344,8 +1240,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/adc_deprecated.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb build esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/dac.c.obj: C_COMPILER____idf_driver_unscanned_ /home/igor/esp/esp-idf/components/driver/esp32/dac.c || cmake_object_order_depends_target___idf_driver DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/dac.c.obj.d @@ -1353,8 +1247,6 @@ build esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/dac.c.obj: C_COMPILER____ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/driver/include/driver -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb - TARGET_PDB = esp-idf/driver/libdriver.pdb # ============================================================================= @@ -1369,9 +1261,8 @@ build esp-idf/driver/libdriver.a: C_STATIC_LIBRARY_LINKER____idf_driver_ esp-idf OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb TARGET_FILE = esp-idf/driver/libdriver.a - TARGET_PDB = esp-idf/driver/libdriver.pdb + TARGET_PDB = driver.a.dbg ############################################# @@ -1458,8 +1349,6 @@ build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj: C_COMPILER____i INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir OBJECT_FILE_DIR = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir - TARGET_COMPILE_PDB = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/__idf_esp_pm.pdb - TARGET_PDB = esp-idf/esp_pm/libesp_pm.pdb build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj: C_COMPILER____idf_esp_pm_unscanned_ /home/igor/esp/esp-idf/components/esp_pm/pm_trace.c || cmake_object_order_depends_target___idf_esp_pm DEP_FILE = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj.d @@ -1467,8 +1356,6 @@ build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj: C_COMPILER____i INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir OBJECT_FILE_DIR = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir - TARGET_COMPILE_PDB = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/__idf_esp_pm.pdb - TARGET_PDB = esp-idf/esp_pm/libesp_pm.pdb build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj: C_COMPILER____idf_esp_pm_unscanned_ /home/igor/esp/esp-idf/components/esp_pm/pm_impl.c || cmake_object_order_depends_target___idf_esp_pm DEP_FILE = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj.d @@ -1476,8 +1363,6 @@ build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj: C_COMPILER____id INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir OBJECT_FILE_DIR = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir - TARGET_COMPILE_PDB = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/__idf_esp_pm.pdb - TARGET_PDB = esp-idf/esp_pm/libesp_pm.pdb # ============================================================================= @@ -1492,9 +1377,8 @@ build esp-idf/esp_pm/libesp_pm.a: C_STATIC_LIBRARY_LINKER____idf_esp_pm_ esp-idf OBJECT_DIR = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/__idf_esp_pm.pdb TARGET_FILE = esp-idf/esp_pm/libesp_pm.a - TARGET_PDB = esp-idf/esp_pm/libesp_pm.pdb + TARGET_PDB = esp_pm.a.dbg ############################################# @@ -1582,8 +1466,6 @@ build esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle - TARGET_COMPILE_PDB = esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__idf_mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/libmbedtls.pdb build esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj: ASM_COMPILER____idf_mbedtls_unscanned_ /home/igor/esp/experiment-ci-cd/build/x509_crt_bundle.S || cmake_object_order_depends_target___idf_mbedtls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -1592,8 +1474,6 @@ build esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__ - TARGET_COMPILE_PDB = esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__idf_mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/libmbedtls.pdb # ============================================================================= @@ -1608,9 +1488,8 @@ build esp-idf/mbedtls/libmbedtls.a: C_STATIC_LIBRARY_LINKER____idf_mbedtls_ esp- OBJECT_DIR = esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__idf_mbedtls.pdb TARGET_FILE = esp-idf/mbedtls/libmbedtls.a - TARGET_PDB = esp-idf/mbedtls/libmbedtls.pdb + TARGET_PDB = mbedtls.a.dbg ############################################# @@ -1945,8 +1824,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/aesni.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -1955,8 +1832,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/aria.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -1965,8 +1840,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/asn1parse.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -1975,8 +1848,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/asn1write.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -1985,8 +1856,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/base64.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -1995,8 +1864,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/bignum.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2005,8 +1872,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/camellia.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2015,8 +1880,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ccm.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2025,8 +1888,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/chacha20.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2035,8 +1896,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/chachapoly.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2045,8 +1904,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/cipher.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2055,8 +1912,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/cipher_wrap.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2065,8 +1920,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/constant_time.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2075,8 +1928,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/cmac.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2085,8 +1936,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ctr_drbg.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2095,8 +1944,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/des.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2105,8 +1952,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/dhm.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2115,8 +1960,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ecdh.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2125,8 +1968,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ecdsa.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2135,8 +1976,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ecjpake.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2145,8 +1984,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ecp.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2155,8 +1992,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ecp_curves.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2165,8 +2000,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/entropy.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2175,8 +2008,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/entropy_poll.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2185,8 +2016,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/error.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2195,8 +2024,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/gcm.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2205,8 +2032,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/hkdf.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2215,8 +2040,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/hmac_drbg.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2225,8 +2048,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/md.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2235,8 +2056,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/md5.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2245,8 +2064,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/memory_buffer_alloc.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2255,8 +2072,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_al INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mps_reader.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/mps_reader.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2265,8 +2080,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mps_reader.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mps_trace.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/mps_trace.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2275,8 +2088,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mps_trace.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/nist_kw.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2285,8 +2096,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/oid.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2295,8 +2104,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/padlock.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2305,8 +2112,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/pem.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2315,8 +2120,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/pk.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2325,8 +2128,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/pk_wrap.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2335,8 +2136,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/pkcs12.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2345,8 +2144,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/pkcs5.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2355,8 +2152,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/pkparse.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2365,8 +2160,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/pkwrite.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2375,8 +2168,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/platform.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2385,8 +2176,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/platform_util.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2395,8 +2184,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/poly1305.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2405,8 +2192,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/psa_crypto.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2415,8 +2200,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_aead.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2425,8 +2208,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_cipher.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2435,8 +2216,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ciphe INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_client.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2445,8 +2224,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_clien INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2455,8 +2232,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_drive INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ecp.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2465,8 +2240,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_hash.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2475,8 +2248,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_mac.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2485,8 +2256,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_rsa.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2495,8 +2264,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_se.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2505,8 +2272,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_slot_management.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2515,8 +2280,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_storage.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2525,8 +2288,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_stora INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/psa_its_file.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2535,8 +2296,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ripemd160.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2545,8 +2304,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/rsa.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2555,8 +2312,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/rsa_alt_helpers.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2565,8 +2320,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/sha1.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2575,8 +2328,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/sha256.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2585,8 +2336,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/sha512.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2595,8 +2344,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ssl_debug_helpers_generated.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2605,8 +2352,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ssl_debug_helper INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/threading.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2615,8 +2360,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/timing.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2625,8 +2368,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/version.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2635,8 +2376,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/version_features.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2645,8 +2384,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_hardware.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/esp_hardware.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2655,8 +2392,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/es INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_mem.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/esp_mem.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2665,8 +2400,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/es INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_timing.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/esp_timing.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2675,8 +2408,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/es INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/sha/esp_sha.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2685,8 +2416,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/es INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2695,8 +2424,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/es INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/aes - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/aes/esp_aes_common.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2705,8 +2432,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/es INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/aes - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/aes/block/esp_aes.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/aes/block/esp_aes.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2715,8 +2440,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/es INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/aes/block - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2725,8 +2448,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/es INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp_bignum.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/esp_bignum.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2735,8 +2456,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/es INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp32/bignum.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/esp32/bignum.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2745,8 +2464,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/es INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/esp32 - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha1.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha1.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2755,8 +2472,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/es INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha256.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha256.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2765,8 +2480,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/es INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha512.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha512.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2775,8 +2488,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/es INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/sha/parallel_engine - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/md/esp_md.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/md/esp_md.c || cmake_object_order_depends_target_mbedcrypto DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2785,8 +2496,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/es INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/igor/esp/esp-idf/components/mbedtls/port/md - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb # ============================================================================= @@ -2801,9 +2510,8 @@ build esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a: CXX_STATIC_LIBRARY_LINKER OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb TARGET_FILE = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb + TARGET_PDB = mbedcrypto.a.dbg # ============================================================================= # Object build statements for STATIC_LIBRARY target mbedx509 @@ -2821,8 +2529,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj: C_COMPILER__mbedx509_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/x509_create.c || cmake_object_order_depends_target_mbedx509 DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2831,8 +2537,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj: C_COMPILER__mbedx509_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/x509_crl.c || cmake_object_order_depends_target_mbedx509 DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2841,8 +2545,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj: C_COMPILER__mbedx509_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/x509_crt.c || cmake_object_order_depends_target_mbedx509 DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2851,8 +2553,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj: C_COMPILER__mbedx509_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/x509_csr.c || cmake_object_order_depends_target_mbedx509 DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2861,8 +2561,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj: C_COMPILER__mbedx509_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/x509write_crt.c || cmake_object_order_depends_target_mbedx509 DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2871,8 +2569,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj: C_COMPILER__mbedx509_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/x509write_csr.c || cmake_object_order_depends_target_mbedx509 DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2881,8 +2577,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb # ============================================================================= @@ -2897,9 +2591,8 @@ build esp-idf/mbedtls/mbedtls/library/libmbedx509.a: CXX_STATIC_LIBRARY_LINKER__ OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb TARGET_FILE = esp-idf/mbedtls/mbedtls/library/libmbedx509.a - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb + TARGET_PDB = mbedx509.a.dbg # ============================================================================= # Object build statements for STATIC_LIBRARY target mbedtls @@ -2917,8 +2610,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj: C_COMPILER__mbedtls_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_cache.c || cmake_object_order_depends_target_mbedtls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2927,8 +2618,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj: C_COMPILER__mbedtls_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_ciphersuites.c || cmake_object_order_depends_target_mbedtls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2937,8 +2626,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj: C_COMPILER__mbedtls_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_cli.c || cmake_object_order_depends_target_mbedtls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2947,8 +2634,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj: C_COMPILER__mbedtls_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_cookie.c || cmake_object_order_depends_target_mbedtls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2957,8 +2642,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj: C_COMPILER__mbedtls_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_msg.c || cmake_object_order_depends_target_mbedtls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2967,8 +2650,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj: C_COMPILER__mbedtls_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_srv.c || cmake_object_order_depends_target_mbedtls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2977,8 +2658,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj: C_COMPILER__mbedtls_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_ticket.c || cmake_object_order_depends_target_mbedtls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2987,8 +2666,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj: C_COMPILER__mbedtls_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_tls.c || cmake_object_order_depends_target_mbedtls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -2997,8 +2674,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj: C_COMPILER__mbedtls_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_keys.c || cmake_object_order_depends_target_mbedtls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3007,8 +2682,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj: C_COMPILER__mbedtls_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_server.c || cmake_object_order_depends_target_mbedtls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3017,8 +2690,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj: C_COMPILER__mbedtls_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_client.c || cmake_object_order_depends_target_mbedtls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3027,8 +2698,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj: C_COMPILER__mbedtls_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_generic.c || cmake_object_order_depends_target_mbedtls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3037,8 +2706,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/igor/esp/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj: C_COMPILER__mbedtls_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/mbedtls_debug.c || cmake_object_order_depends_target_mbedtls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3047,8 +2714,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/igor/esp/esp-i INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/igor/esp/esp-idf/components/mbedtls/port - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/igor/esp/esp-idf/components/mbedtls/port/net_sockets.c.obj: C_COMPILER__mbedtls_unscanned_ /home/igor/esp/esp-idf/components/mbedtls/port/net_sockets.c || cmake_object_order_depends_target_mbedtls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3057,8 +2722,6 @@ build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/igor/esp/esp-i INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/igor/esp/esp-idf/components/mbedtls/port - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb # ============================================================================= @@ -3073,9 +2736,8 @@ build esp-idf/mbedtls/mbedtls/library/libmbedtls.a: CXX_STATIC_LIBRARY_LINKER__m OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb TARGET_FILE = esp-idf/mbedtls/mbedtls/library/libmbedtls.a - TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb + TARGET_PDB = mbedtls.a.dbg ############################################# @@ -3540,18 +3202,14 @@ build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include OBJECT_DIR = esp-idf/app_update/CMakeFiles/__idf_app_update.dir OBJECT_FILE_DIR = esp-idf/app_update/CMakeFiles/__idf_app_update.dir - TARGET_COMPILE_PDB = esp-idf/app_update/CMakeFiles/__idf_app_update.dir/__idf_app_update.pdb - TARGET_PDB = esp-idf/app_update/libapp_update.pdb build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj: C_COMPILER____idf_app_update_unscanned_ /home/igor/esp/esp-idf/components/app_update/esp_app_desc.c || cmake_object_order_depends_target___idf_app_update - DEFINES = -D PROJECT_NAME=\"experiment-ci-cd\" -DPROJECT_VER=\"0.1.3-3-gb2c698f-dirty\" + DEFINES = -D PROJECT_NAME=\"experiment-ci-cd\" -DPROJECT_VER=\"0.1.4-16-g3c954cb-dirty\" DEP_FILE = esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj.d FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-error=format= -Wno-format -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=/home/igor/esp/experiment-ci-cd=. -fmacro-prefix-map=/home/igor/esp/esp-idf=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0-dev-3654-gc2ccc383da\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include OBJECT_DIR = esp-idf/app_update/CMakeFiles/__idf_app_update.dir OBJECT_FILE_DIR = esp-idf/app_update/CMakeFiles/__idf_app_update.dir - TARGET_COMPILE_PDB = esp-idf/app_update/CMakeFiles/__idf_app_update.dir/__idf_app_update.pdb - TARGET_PDB = esp-idf/app_update/libapp_update.pdb # ============================================================================= @@ -3566,9 +3224,8 @@ build esp-idf/app_update/libapp_update.a: C_STATIC_LIBRARY_LINKER____idf_app_upd OBJECT_DIR = esp-idf/app_update/CMakeFiles/__idf_app_update.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/app_update/CMakeFiles/__idf_app_update.dir/__idf_app_update.pdb TARGET_FILE = esp-idf/app_update/libapp_update.a - TARGET_PDB = esp-idf/app_update/libapp_update.pdb + TARGET_PDB = app_update.a.dbg ############################################# @@ -3656,8 +3313,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/boo INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/igor/esp/esp-idf/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3666,8 +3321,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/boo INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/igor/esp/esp-idf/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3676,8 +3329,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/boo INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3686,8 +3337,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloa INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/igor/esp/esp-idf/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3696,8 +3345,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/boo INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/igor/esp/esp-idf/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3706,8 +3353,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/boo INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/igor/esp/esp-idf/components/bootloader_support/src/bootloader_random_esp32.c || cmake_object_order_depends_target___idf_bootloader_support DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3716,8 +3361,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/boo INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/igor/esp/esp-idf/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3726,8 +3369,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/boo INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/igor/esp/esp-idf/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3736,8 +3377,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/igor/esp/esp-idf/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3746,8 +3385,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/fla INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/igor/esp/esp-idf/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3756,8 +3393,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/sec INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/igor/esp/esp-idf/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3766,8 +3401,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/fla INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3776,8 +3409,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloa INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32.c || cmake_object_order_depends_target___idf_bootloader_support DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3786,8 +3417,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloa INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/igor/esp/esp-idf/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3796,8 +3425,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/boo INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/igor/esp/esp-idf/components/bootloader_support/src/idf/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -3806,8 +3433,6 @@ build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb # ============================================================================= @@ -3822,9 +3447,8 @@ build esp-idf/bootloader_support/libbootloader_support.a: C_STATIC_LIBRARY_LINKE OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb TARGET_FILE = esp-idf/bootloader_support/libbootloader_support.a - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb + TARGET_PDB = bootloader_support.a.dbg ############################################# @@ -3911,8 +3535,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition_target.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/partition_target.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition_target.c.obj.d @@ -3920,8 +3542,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition_target.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/flash_brownout_hook.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj.d @@ -3929,8 +3549,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/spi_flash_chip_drivers.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj.d @@ -3938,8 +3556,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/spi_flash_chip_generic.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj.d @@ -3947,8 +3563,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/spi_flash_chip_issi.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj.d @@ -3956,8 +3570,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/spi_flash_chip_mxic.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj.d @@ -3965,8 +3577,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/spi_flash_chip_gd.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj.d @@ -3974,8 +3584,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/spi_flash_chip_winbond.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj.d @@ -3983,8 +3591,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/spi_flash_chip_boya.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj.d @@ -3992,8 +3598,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/spi_flash_chip_mxic_opi.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj.d @@ -4001,8 +3605,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/spi_flash_chip_th.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj.d @@ -4010,8 +3612,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/memspi_host_driver.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj.d @@ -4019,8 +3619,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/cache_utils.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj.d @@ -4028,8 +3626,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/flash_mmap.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj.d @@ -4037,8 +3633,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj: C_COMPI INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/flash_ops.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj.d @@ -4046,8 +3640,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/flash_ops_esp32.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/esp32/flash_ops_esp32.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/flash_ops_esp32.c.obj.d @@ -4055,8 +3647,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/flash_ops_esp32.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/esp_flash_api.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj.d @@ -4064,8 +3654,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/esp_flash_spi_init.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj.d @@ -4073,8 +3661,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/spi_flash_os_func_app.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj.d @@ -4082,8 +3668,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/igor/esp/esp-idf/components/spi_flash/spi_flash_os_func_noos.c || cmake_object_order_depends_target___idf_spi_flash DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj.d @@ -4091,8 +3675,6 @@ build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include/spi_flash -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb # ============================================================================= @@ -4107,9 +3689,8 @@ build esp-idf/spi_flash/libspi_flash.a: C_STATIC_LIBRARY_LINKER____idf_spi_flash OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb TARGET_FILE = esp-idf/spi_flash/libspi_flash.a - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb + TARGET_PDB = spi_flash.a.dbg ############################################# @@ -4196,8 +3777,6 @@ build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj: C_COMPILER____ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir OBJECT_FILE_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir - TARGET_COMPILE_PDB = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/__idf_pthread.pdb - TARGET_PDB = esp-idf/pthread/libpthread.pdb build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj: C_COMPILER____idf_pthread_unscanned_ /home/igor/esp/esp-idf/components/pthread/pthread_cond_var.c || cmake_object_order_depends_target___idf_pthread DEP_FILE = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj.d @@ -4205,8 +3784,6 @@ build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir OBJECT_FILE_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir - TARGET_COMPILE_PDB = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/__idf_pthread.pdb - TARGET_PDB = esp-idf/pthread/libpthread.pdb build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj: C_COMPILER____idf_pthread_unscanned_ /home/igor/esp/esp-idf/components/pthread/pthread_local_storage.c || cmake_object_order_depends_target___idf_pthread DEP_FILE = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj.d @@ -4214,8 +3791,6 @@ build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir OBJECT_FILE_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir - TARGET_COMPILE_PDB = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/__idf_pthread.pdb - TARGET_PDB = esp-idf/pthread/libpthread.pdb build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj: C_COMPILER____idf_pthread_unscanned_ /home/igor/esp/esp-idf/components/pthread/pthread_rwlock.c || cmake_object_order_depends_target___idf_pthread DEP_FILE = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj.d @@ -4223,8 +3798,6 @@ build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj: C_COMPI INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir OBJECT_FILE_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir - TARGET_COMPILE_PDB = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/__idf_pthread.pdb - TARGET_PDB = esp-idf/pthread/libpthread.pdb # ============================================================================= @@ -4239,9 +3812,8 @@ build esp-idf/pthread/libpthread.a: C_STATIC_LIBRARY_LINKER____idf_pthread_ esp- OBJECT_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/__idf_pthread.pdb TARGET_FILE = esp-idf/pthread/libpthread.a - TARGET_PDB = esp-idf/pthread/libpthread.pdb + TARGET_PDB = pthread.a.dbg ############################################# @@ -4328,8 +3900,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/crosscore_int.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj.d @@ -4337,8 +3907,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/esp_ipc.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj.d @@ -4346,8 +3914,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/freertos_hooks.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj.d @@ -4355,8 +3921,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/int_wdt.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj.d @@ -4364,8 +3928,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/panic.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj.d @@ -4373,8 +3935,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj: C_COMPILER INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/esp_system.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj.d @@ -4382,8 +3942,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/startup.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj.d @@ -4391,8 +3949,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/system_time.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj.d @@ -4400,8 +3956,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/stack_check.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj.d @@ -4409,8 +3963,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/task_wdt.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt.c.obj.d @@ -4418,8 +3970,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt.c.obj: C_COMPI INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/ubsan.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj.d @@ -4427,8 +3977,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj: C_COMPILER INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/xt_wdt.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj.d @@ -4436,8 +3984,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/debug_stubs.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj.d @@ -4445,8 +3991,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/cpu_start.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj.d @@ -4454,8 +3998,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/panic_handler.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj.d @@ -4463,8 +4005,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/brownout.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj.d @@ -4472,8 +4012,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/soc/esp32/highint_hdl.S || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj.d @@ -4481,8 +4019,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32 - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/soc/esp32/clk.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj.d @@ -4490,8 +4026,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32 - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/soc/esp32/reset_reason.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj.d @@ -4499,8 +4033,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_re INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32 - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/soc/esp32/system_internal.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj.d @@ -4508,8 +4040,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_i INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32 - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/soc/esp32/cache_err_int.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj.d @@ -4517,8 +4047,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_er INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32 - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/arch/xtensa/panic_arch.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj.d @@ -4526,8 +4054,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/arch/xtensa/panic_handler_asm.S || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj.d @@ -4535,8 +4061,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/arch/xtensa/expression_with_stack.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj.d @@ -4544,8 +4068,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expres INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/arch/xtensa/expression_with_stack_asm.S || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj.d @@ -4553,8 +4075,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expres INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/arch/xtensa/debug_helpers.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj.d @@ -4562,8 +4082,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/arch/xtensa/debug_helpers_asm.S || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj.d @@ -4571,8 +4089,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/arch/xtensa/debug_stubs.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj.d @@ -4580,8 +4096,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/arch/xtensa/trax.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj.d @@ -4589,8 +4103,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr.c || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr.c.obj.d @@ -4598,8 +4110,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ip INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_handler.S || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj.d @@ -4607,8 +4117,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ip INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ /home/igor/esp/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_routines.S || cmake_object_order_depends_target___idf_esp_system DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj.d @@ -4616,8 +4124,6 @@ build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ip INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/include -I/home/igor/esp/esp-idf/components/esp_system/port/. -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/app_update/include OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb # ============================================================================= @@ -4632,9 +4138,8 @@ build esp-idf/esp_system/libesp_system.a: C_STATIC_LIBRARY_LINKER____idf_esp_sys OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb TARGET_FILE = esp-idf/esp_system/libesp_system.a - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb + TARGET_PDB = esp_system.a.dbg ############################################# @@ -4903,8 +4408,6 @@ build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/igor/esp/esp-idf/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj.d @@ -4912,8 +4415,6 @@ build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/igor/esp/esp-idf/components/esp_rom/patches/esp_rom_uart.c || cmake_object_order_depends_target___idf_esp_rom DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj.d @@ -4921,8 +4422,6 @@ build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/igor/esp/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj.d @@ -4930,8 +4429,6 @@ build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tjpgd.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/igor/esp/esp-idf/components/esp_rom/patches/esp_rom_tjpgd.c || cmake_object_order_depends_target___idf_esp_rom DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tjpgd.c.obj.d @@ -4939,8 +4436,6 @@ build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tjpgd.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/igor/esp/esp-idf/components/esp_rom/patches/esp_rom_regi2c.c || cmake_object_order_depends_target___idf_esp_rom DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj.d @@ -4948,8 +4443,6 @@ build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj: ASM_COMPILER____idf_esp_rom_unscanned_ /home/igor/esp/esp-idf/components/esp_rom/patches/esp_rom_longjmp.S || cmake_object_order_depends_target___idf_esp_rom DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj.d @@ -4957,8 +4450,6 @@ build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb # ============================================================================= @@ -4973,9 +4464,8 @@ build esp-idf/esp_rom/libesp_rom.a: C_STATIC_LIBRARY_LINKER____idf_esp_rom_ esp- OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb TARGET_FILE = esp-idf/esp_rom/libesp_rom.a - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb + TARGET_PDB = esp_rom.a.dbg ############################################# @@ -5062,8 +4552,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj: C_COMPILER____idf_hal_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj.d @@ -5071,8 +4559,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_ha INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/esp32/efuse_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj.d @@ -5080,8 +4566,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj: C_COMPILER____ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj.d @@ -5089,8 +4573,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/wdt_hal_iram.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj.d @@ -5098,8 +4580,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj: C_COMPILER____idf INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/rtc_io_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj.d @@ -5107,8 +4587,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj: C_COMPILER____idf_h INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/spi_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj.d @@ -5116,8 +4594,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj: C_COMPILER____idf_hal_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/spi_hal_iram.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj.d @@ -5125,8 +4601,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj: C_COMPILER____idf INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/spi_slave_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj.d @@ -5134,8 +4608,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj: C_COMPILER____id INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/spi_slave_hal_iram.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj.d @@ -5143,8 +4615,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj: C_COMPILER_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/timer_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj.d @@ -5152,8 +4622,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj: C_COMPILER____idf_ha INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/timer_hal_iram.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal_iram.c.obj.d @@ -5161,8 +4629,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal_iram.c.obj: C_COMPILER____i INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/ledc_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj.d @@ -5170,8 +4636,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj: C_COMPILER____idf_hal INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/ledc_hal_iram.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj.d @@ -5179,8 +4643,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj: C_COMPILER____id INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/i2c_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj.d @@ -5188,8 +4650,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj: C_COMPILER____idf_hal_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/i2c_hal_iram.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj.d @@ -5197,8 +4657,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj: C_COMPILER____idf INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/gpio_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj.d @@ -5206,8 +4664,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj: C_COMPILER____idf_hal INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/uart_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj.d @@ -5215,8 +4671,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj: C_COMPILER____idf_hal INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/uart_hal_iram.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj.d @@ -5224,8 +4678,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj: C_COMPILER____id INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/spi_flash_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj.d @@ -5233,8 +4685,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj: C_COMPILER____id INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/spi_flash_hal_iram.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj.d @@ -5242,8 +4692,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj: C_COMPILER_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/spi_flash_encrypt_hal_iram.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj.d @@ -5251,8 +4699,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/sha_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj.d @@ -5260,8 +4706,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj: C_COMPILER____idf_hal_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/adc_hal_common.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj.d @@ -5269,8 +4713,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj: C_COMPILER____i INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/adc_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj.d @@ -5278,8 +4720,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj: C_COMPILER____idf_hal_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/rmt_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj.d @@ -5287,8 +4727,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj: C_COMPILER____idf_hal_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/pcnt_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj.d @@ -5296,8 +4734,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj: C_COMPILER____idf_hal INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/mcpwm_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj.d @@ -5305,8 +4741,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj: C_COMPILER____idf_ha INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/twai_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj.d @@ -5314,8 +4748,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj: C_COMPILER____idf_hal INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/twai_hal_iram.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj.d @@ -5323,8 +4755,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj: C_COMPILER____id INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/i2s_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj.d @@ -5332,8 +4762,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj: C_COMPILER____idf_hal_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/sigmadelta_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/sigmadelta_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/sigmadelta_hal.c.obj.d @@ -5341,8 +4769,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/sigmadelta_hal.c.obj: C_COMPILER____i INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/emac_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj.d @@ -5350,8 +4776,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj: C_COMPILER____idf_hal INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/dac_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/dac_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/dac_hal.c.obj.d @@ -5359,8 +4783,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/dac_hal.c.obj: C_COMPILER____idf_hal_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/sdio_slave_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj.d @@ -5368,8 +4790,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj: C_COMPILER____i INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/touch_sensor_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj.d @@ -5377,8 +4797,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/aes_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj.d @@ -5386,8 +4804,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj: C_COMPILER____idf_hal_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/adc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/esp32/adc_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/adc_hal.c.obj.d @@ -5395,8 +4811,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/adc_hal.c.obj: C_COMPILER____id INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/brownout_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/esp32/brownout_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/brownout_hal.c.obj.d @@ -5404,8 +4818,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/brownout_hal.c.obj: C_COMPILER_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/touch_sensor_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/esp32/touch_sensor_hal.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/touch_sensor_hal.c.obj.d @@ -5413,8 +4825,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/touch_sensor_hal.c.obj: C_COMPI INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/gpio_hal_workaround.c.obj: C_COMPILER____idf_hal_unscanned_ /home/igor/esp/esp-idf/components/hal/esp32/gpio_hal_workaround.c || cmake_object_order_depends_target___idf_hal DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/gpio_hal_workaround.c.obj.d @@ -5422,8 +4832,6 @@ build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/gpio_hal_workaround.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb # ============================================================================= @@ -5438,9 +4846,8 @@ build esp-idf/hal/libhal.a: C_STATIC_LIBRARY_LINKER____idf_hal_ esp-idf/hal/CMak OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb TARGET_FILE = esp-idf/hal/libhal.a - TARGET_PDB = esp-idf/hal/libhal.pdb + TARGET_PDB = hal.a.dbg ############################################# @@ -5527,8 +4934,6 @@ build esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj: C_COMPILER____idf_log_unsc INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb - TARGET_PDB = esp-idf/log/liblog.pdb build esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj: C_COMPILER____idf_log_unscanned_ /home/igor/esp/esp-idf/components/log/log_buffers.c || cmake_object_order_depends_target___idf_log DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj.d @@ -5536,8 +4941,6 @@ build esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj: C_COMPILER____idf_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb - TARGET_PDB = esp-idf/log/liblog.pdb build esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj: C_COMPILER____idf_log_unscanned_ /home/igor/esp/esp-idf/components/log/log_freertos.c || cmake_object_order_depends_target___idf_log DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj.d @@ -5545,8 +4948,6 @@ build esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj: C_COMPILER____idf INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb - TARGET_PDB = esp-idf/log/liblog.pdb # ============================================================================= @@ -5561,9 +4962,8 @@ build esp-idf/log/liblog.a: C_STATIC_LIBRARY_LINKER____idf_log_ esp-idf/log/CMak OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb TARGET_FILE = esp-idf/log/liblog.a - TARGET_PDB = esp-idf/log/liblog.pdb + TARGET_PDB = log.a.dbg ############################################# @@ -5650,8 +5050,6 @@ build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj: C_COMPILER____idf_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - TARGET_COMPILE_PDB = esp-idf/heap/CMakeFiles/__idf_heap.dir/__idf_heap.pdb - TARGET_PDB = esp-idf/heap/libheap.pdb build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj: C_COMPILER____idf_heap_unscanned_ /home/igor/esp/esp-idf/components/heap/heap_caps_init.c || cmake_object_order_depends_target___idf_heap DEP_FILE = esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj.d @@ -5659,8 +5057,6 @@ build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - TARGET_COMPILE_PDB = esp-idf/heap/CMakeFiles/__idf_heap.dir/__idf_heap.pdb - TARGET_PDB = esp-idf/heap/libheap.pdb build esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj: C_COMPILER____idf_heap_unscanned_ /home/igor/esp/esp-idf/components/heap/multi_heap.c || cmake_object_order_depends_target___idf_heap DEP_FILE = esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj.d @@ -5668,8 +5064,6 @@ build esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj: C_COMPILER____idf INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - TARGET_COMPILE_PDB = esp-idf/heap/CMakeFiles/__idf_heap.dir/__idf_heap.pdb - TARGET_PDB = esp-idf/heap/libheap.pdb build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_tlsf.c.obj: C_COMPILER____idf_heap_unscanned_ /home/igor/esp/esp-idf/components/heap/heap_tlsf.c || cmake_object_order_depends_target___idf_heap DEP_FILE = esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_tlsf.c.obj.d @@ -5677,8 +5071,6 @@ build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_tlsf.c.obj: C_COMPILER____idf_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - TARGET_COMPILE_PDB = esp-idf/heap/CMakeFiles/__idf_heap.dir/__idf_heap.pdb - TARGET_PDB = esp-idf/heap/libheap.pdb build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj: C_COMPILER____idf_heap_unscanned_ /home/igor/esp/esp-idf/components/heap/port/memory_layout_utils.c || cmake_object_order_depends_target___idf_heap DEP_FILE = esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj.d @@ -5686,8 +5078,6 @@ build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir/port - TARGET_COMPILE_PDB = esp-idf/heap/CMakeFiles/__idf_heap.dir/__idf_heap.pdb - TARGET_PDB = esp-idf/heap/libheap.pdb build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj: C_COMPILER____idf_heap_unscanned_ /home/igor/esp/esp-idf/components/heap/port/esp32/memory_layout.c || cmake_object_order_depends_target___idf_heap DEP_FILE = esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj.d @@ -5695,8 +5085,6 @@ build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32 - TARGET_COMPILE_PDB = esp-idf/heap/CMakeFiles/__idf_heap.dir/__idf_heap.pdb - TARGET_PDB = esp-idf/heap/libheap.pdb # ============================================================================= @@ -5711,9 +5099,8 @@ build esp-idf/heap/libheap.a: C_STATIC_LIBRARY_LINKER____idf_heap_ esp-idf/heap/ OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/heap/CMakeFiles/__idf_heap.dir/__idf_heap.pdb TARGET_FILE = esp-idf/heap/libheap.a - TARGET_PDB = esp-idf/heap/libheap.pdb + TARGET_PDB = heap.a.dbg ############################################# @@ -5800,8 +5187,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_u INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj.d @@ -5809,8 +5194,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/adc_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj.d @@ -5818,8 +5201,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/dac_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj.d @@ -5827,8 +5208,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/dport_access.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj.d @@ -5836,8 +5215,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj: C_COMPILER_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/gpio_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj.d @@ -5845,8 +5222,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj: C_COMPILER__ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/i2c_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj.d @@ -5854,8 +5229,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/i2s_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj.d @@ -5863,8 +5236,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/interrupts.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj.d @@ -5872,8 +5243,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/lcd_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj.d @@ -5881,8 +5250,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/ledc_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj.d @@ -5890,8 +5257,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj: C_COMPILER__ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/mcpwm_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj.d @@ -5899,8 +5264,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj: C_COMPILER_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/pcnt_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj.d @@ -5908,8 +5271,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj: C_COMPILER__ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/rmt_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj.d @@ -5917,8 +5278,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/rtc_io_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj.d @@ -5926,8 +5285,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj: C_COMPILER INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/sdio_slave_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj.d @@ -5935,8 +5292,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/sdmmc_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj.d @@ -5944,8 +5299,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj: C_COMPILER_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sigmadelta_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/sigmadelta_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sigmadelta_periph.c.obj.d @@ -5953,8 +5306,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sigmadelta_periph.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/spi_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj.d @@ -5962,8 +5313,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/timer_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj.d @@ -5971,8 +5320,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj: C_COMPILER_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/touch_sensor_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj.d @@ -5980,8 +5327,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/igor/esp/esp-idf/components/soc/esp32/uart_periph.c || cmake_object_order_depends_target___idf_soc DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj.d @@ -5989,8 +5334,6 @@ build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj: C_COMPILER__ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb # ============================================================================= @@ -6005,9 +5348,8 @@ build esp-idf/soc/libsoc.a: C_STATIC_LIBRARY_LINKER____idf_soc_ esp-idf/soc/CMak OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb TARGET_FILE = esp-idf/soc/libsoc.a - TARGET_PDB = esp-idf/soc/libsoc.pdb + TARGET_PDB = soc.a.dbg ############################################# @@ -6164,8 +5506,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/compare_set.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj.d @@ -6173,8 +5513,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/esp_memory_utils.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj.d @@ -6182,8 +5520,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_util INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_async_memcpy.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/esp_async_memcpy.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_async_memcpy.c.obj.d @@ -6191,8 +5527,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_async_memcp INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/esp_clk.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj.d @@ -6200,8 +5534,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/clk_ctrl_os.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj.d @@ -6209,8 +5541,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/hw_random.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj.d @@ -6218,8 +5548,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/intr_alloc.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj.d @@ -6227,8 +5555,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/mac_addr.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj.d @@ -6236,8 +5562,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj.d @@ -6245,8 +5569,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/rtc_module.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj.d @@ -6254,8 +5576,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/sleep_modes.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj.d @@ -6263,8 +5583,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/sleep_gpio.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj.d @@ -6272,8 +5590,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mac_bb.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/sleep_mac_bb.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mac_bb.c.obj.d @@ -6281,8 +5597,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mac_bb.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/regi2c_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj.d @@ -6290,8 +5604,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/rtc_wdt.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj.d @@ -6299,8 +5611,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj.d @@ -6308,8 +5618,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj.d @@ -6317,8 +5625,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/rtc_init.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj.d @@ -6326,8 +5632,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_pm.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/rtc_pm.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_pm.c.obj.d @@ -6335,8 +5639,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/rtc_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj.d @@ -6344,8 +5646,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj.d @@ -6353,8 +5653,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj.d @@ -6362,8 +5660,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/cache_sram_mmu.c || cmake_object_order_depends_target___idf_esp_hw_support DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj.d @@ -6371,8 +5667,6 @@ build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cach INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/esp_private -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb # ============================================================================= @@ -6387,9 +5681,8 @@ build esp-idf/esp_hw_support/libesp_hw_support.a: C_STATIC_LIBRARY_LINKER____idf OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb TARGET_FILE = esp-idf/esp_hw_support/libesp_hw_support.a - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb + TARGET_PDB = esp_hw_support.a.dbg ############################################# @@ -6546,8 +5839,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xt INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj: ASM_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/portasm.S || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj.d @@ -6555,8 +5846,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xt INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S.obj: ASM_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S.obj.d @@ -6564,8 +5853,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xt INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj.d @@ -6573,8 +5860,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xt INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj.d @@ -6582,8 +5867,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xt INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vector_defaults.S.obj: ASM_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_vector_defaults.S || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vector_defaults.S.obj.d @@ -6591,8 +5874,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xt INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.obj: ASM_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.obj.d @@ -6600,8 +5881,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xt INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_common.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/port_common.c || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_common.c.obj.d @@ -6609,8 +5888,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/po INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/port_systick.c || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.c.obj.d @@ -6618,8 +5895,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/po INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/croutine.c || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj.d @@ -6627,8 +5902,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj.d @@ -6636,8 +5909,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_group INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/list.c || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj.d @@ -6645,8 +5916,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj.d @@ -6654,8 +5923,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj.d @@ -6663,8 +5930,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj.d @@ -6672,8 +5937,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj.d @@ -6681,8 +5944,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buff INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/FreeRTOS-openocd.c || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj.d @@ -6690,8 +5951,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_compat.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/igor/esp/esp-idf/components/freertos/esp_additions/freertos_v8_compat.c || cmake_object_order_depends_target___idf_freertos DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_compat.c.obj.d @@ -6699,8 +5958,6 @@ build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_c INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/priv_include -I/home/igor/esp/esp-idf/components/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/igor/esp/esp-idf/components/freertos/esp_additions/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb - TARGET_PDB = esp-idf/freertos/libfreertos.pdb # ============================================================================= @@ -6715,9 +5972,8 @@ build esp-idf/freertos/libfreertos.a: C_STATIC_LIBRARY_LINKER____idf_freertos_ e OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb TARGET_FILE = esp-idf/freertos/libfreertos.a - TARGET_PDB = esp-idf/freertos/libfreertos.pdb + TARGET_PDB = freertos.a.dbg ############################################# @@ -6804,8 +6060,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj: C_COMPILER____idf_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/igor/esp/esp-idf/components/newlib/assert.c || cmake_object_order_depends_target___idf_newlib DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj.d @@ -6813,8 +6067,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj: C_COMPILER____idf INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/igor/esp/esp-idf/components/newlib/heap.c || cmake_object_order_depends_target___idf_newlib DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj.d @@ -6822,8 +6074,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj: C_COMPILER____idf_n INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/igor/esp/esp-idf/components/newlib/locks.c || cmake_object_order_depends_target___idf_newlib DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj.d @@ -6831,8 +6081,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj: C_COMPILER____idf_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/igor/esp/esp-idf/components/newlib/poll.c || cmake_object_order_depends_target___idf_newlib DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj.d @@ -6840,8 +6088,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj: C_COMPILER____idf_n INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/igor/esp/esp-idf/components/newlib/pthread.c || cmake_object_order_depends_target___idf_newlib DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj.d @@ -6849,8 +6095,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj: C_COMPILER____id INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/igor/esp/esp-idf/components/newlib/random.c || cmake_object_order_depends_target___idf_newlib DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj.d @@ -6858,8 +6102,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj: C_COMPILER____idf INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/igor/esp/esp-idf/components/newlib/reent_init.c || cmake_object_order_depends_target___idf_newlib DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj.d @@ -6867,8 +6109,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/igor/esp/esp-idf/components/newlib/newlib_init.c || cmake_object_order_depends_target___idf_newlib DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj.d @@ -6876,8 +6116,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj: C_COMPILER__ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/igor/esp/esp-idf/components/newlib/syscalls.c || cmake_object_order_depends_target___idf_newlib DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj.d @@ -6885,8 +6123,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj: C_COMPILER____i INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/igor/esp/esp-idf/components/newlib/termios.c || cmake_object_order_depends_target___idf_newlib DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj.d @@ -6894,8 +6130,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj: C_COMPILER____id INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/igor/esp/esp-idf/components/newlib/stdatomic.c || cmake_object_order_depends_target___idf_newlib DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj.d @@ -6903,8 +6137,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj: C_COMPILER____ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/igor/esp/esp-idf/components/newlib/time.c || cmake_object_order_depends_target___idf_newlib DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj.d @@ -6912,8 +6144,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj: C_COMPILER____idf_n INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/igor/esp/esp-idf/components/newlib/sysconf.c || cmake_object_order_depends_target___idf_newlib DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj.d @@ -6921,8 +6151,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj: C_COMPILER____id INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/igor/esp/esp-idf/components/newlib/realpath.c || cmake_object_order_depends_target___idf_newlib DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj.d @@ -6930,8 +6158,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj: C_COMPILER____i INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/igor/esp/esp-idf/components/newlib/port/esp_time_impl.c || cmake_object_order_depends_target___idf_newlib DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj.d @@ -6939,8 +6165,6 @@ build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/newlib/priv_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb - TARGET_PDB = esp-idf/newlib/libnewlib.pdb # ============================================================================= @@ -6955,9 +6179,8 @@ build esp-idf/newlib/libnewlib.a: C_STATIC_LIBRARY_LINKER____idf_newlib_ esp-idf OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb TARGET_FILE = esp-idf/newlib/libnewlib.a - TARGET_PDB = esp-idf/newlib/libnewlib.pdb + TARGET_PDB = newlib.a.dbg ############################################# @@ -7114,8 +6337,6 @@ build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj: CXX_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/pthread/include OBJECT_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir OBJECT_FILE_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir - TARGET_COMPILE_PDB = esp-idf/cxx/CMakeFiles/__idf_cxx.dir/__idf_cxx.pdb - TARGET_PDB = esp-idf/cxx/libcxx.pdb build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ /home/igor/esp/esp-idf/components/cxx/cxx_guards.cpp || cmake_object_order_depends_target___idf_cxx DEP_FILE = esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj.d @@ -7123,8 +6344,6 @@ build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj: CXX_COMPILER____i INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/pthread/include OBJECT_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir OBJECT_FILE_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir - TARGET_COMPILE_PDB = esp-idf/cxx/CMakeFiles/__idf_cxx.dir/__idf_cxx.pdb - TARGET_PDB = esp-idf/cxx/libcxx.pdb # ============================================================================= @@ -7139,9 +6358,8 @@ build esp-idf/cxx/libcxx.a: C_STATIC_LIBRARY_LINKER____idf_cxx_ esp-idf/cxx/CMak OBJECT_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/cxx/CMakeFiles/__idf_cxx.dir/__idf_cxx.pdb TARGET_FILE = esp-idf/cxx/libcxx.a - TARGET_PDB = esp-idf/cxx/libcxx.pdb + TARGET_PDB = cxx.a.dbg ############################################# @@ -7229,8 +6447,6 @@ build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/ulp/ulp_common/include -I/home/igor/esp/esp-idf/components/ulp/ulp_common/include/esp32 -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_http_client/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/esp_serial_slave_link/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/esp_https_ota/include OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir OBJECT_FILE_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/__idf_esp_common.pdb - TARGET_PDB = esp-idf/esp_common/libesp_common.pdb # ============================================================================= @@ -7245,9 +6461,8 @@ build esp-idf/esp_common/libesp_common.a: C_STATIC_LIBRARY_LINKER____idf_esp_com OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/__idf_esp_common.pdb TARGET_FILE = esp-idf/esp_common/libesp_common.a - TARGET_PDB = esp-idf/esp_common/libesp_common.pdb + TARGET_PDB = esp_common.a.dbg ############################################# @@ -7334,8 +6549,6 @@ build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_timer/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir OBJECT_FILE_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/__idf_esp_timer.pdb - TARGET_PDB = esp-idf/esp_timer/libesp_timer.pdb build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj: C_COMPILER____idf_esp_timer_unscanned_ /home/igor/esp/esp-idf/components/esp_timer/src/ets_timer_legacy.c || cmake_object_order_depends_target___idf_esp_timer DEP_FILE = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj.d @@ -7343,8 +6556,6 @@ build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_timer/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir OBJECT_FILE_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/__idf_esp_timer.pdb - TARGET_PDB = esp-idf/esp_timer/libesp_timer.pdb build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj: C_COMPILER____idf_esp_timer_unscanned_ /home/igor/esp/esp-idf/components/esp_timer/src/system_time.c || cmake_object_order_depends_target___idf_esp_timer DEP_FILE = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj.d @@ -7352,8 +6563,6 @@ build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_timer/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir OBJECT_FILE_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/__idf_esp_timer.pdb - TARGET_PDB = esp-idf/esp_timer/libesp_timer.pdb build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj: C_COMPILER____idf_esp_timer_unscanned_ /home/igor/esp/esp-idf/components/esp_timer/src/esp_timer_impl_lac.c || cmake_object_order_depends_target___idf_esp_timer DEP_FILE = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj.d @@ -7361,8 +6570,6 @@ build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_timer/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir OBJECT_FILE_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/__idf_esp_timer.pdb - TARGET_PDB = esp-idf/esp_timer/libesp_timer.pdb # ============================================================================= @@ -7377,9 +6584,8 @@ build esp-idf/esp_timer/libesp_timer.a: C_STATIC_LIBRARY_LINKER____idf_esp_timer OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/__idf_esp_timer.pdb TARGET_FILE = esp-idf/esp_timer/libesp_timer.a - TARGET_PDB = esp-idf/esp_timer/libesp_timer.pdb + TARGET_PDB = esp_timer.a.dbg ############################################# @@ -7466,8 +6672,6 @@ build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/app_trace/include -I/home/igor/esp/esp-idf/components/app_trace/private_include -I/home/igor/esp/esp-idf/components/app_trace/port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir OBJECT_FILE_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir - TARGET_COMPILE_PDB = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/__idf_app_trace.pdb - TARGET_PDB = esp-idf/app_trace/libapp_trace.pdb build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj: C_COMPILER____idf_app_trace_unscanned_ /home/igor/esp/esp-idf/components/app_trace/app_trace_util.c || cmake_object_order_depends_target___idf_app_trace DEP_FILE = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj.d @@ -7475,8 +6679,6 @@ build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/app_trace/include -I/home/igor/esp/esp-idf/components/app_trace/private_include -I/home/igor/esp/esp-idf/components/app_trace/port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir OBJECT_FILE_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir - TARGET_COMPILE_PDB = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/__idf_app_trace.pdb - TARGET_PDB = esp-idf/app_trace/libapp_trace.pdb build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj: C_COMPILER____idf_app_trace_unscanned_ /home/igor/esp/esp-idf/components/app_trace/host_file_io.c || cmake_object_order_depends_target___idf_app_trace DEP_FILE = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj.d @@ -7484,8 +6686,6 @@ build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/app_trace/include -I/home/igor/esp/esp-idf/components/app_trace/private_include -I/home/igor/esp/esp-idf/components/app_trace/port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir OBJECT_FILE_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir - TARGET_COMPILE_PDB = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/__idf_app_trace.pdb - TARGET_PDB = esp-idf/app_trace/libapp_trace.pdb build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj: C_COMPILER____idf_app_trace_unscanned_ /home/igor/esp/esp-idf/components/app_trace/gcov/gcov_rtio.c || cmake_object_order_depends_target___idf_app_trace DEP_FILE = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj.d @@ -7493,8 +6693,6 @@ build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/app_trace/include -I/home/igor/esp/esp-idf/components/app_trace/private_include -I/home/igor/esp/esp-idf/components/app_trace/port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir OBJECT_FILE_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov - TARGET_COMPILE_PDB = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/__idf_app_trace.pdb - TARGET_PDB = esp-idf/app_trace/libapp_trace.pdb build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj: C_COMPILER____idf_app_trace_unscanned_ /home/igor/esp/esp-idf/components/app_trace/port/port_uart.c || cmake_object_order_depends_target___idf_app_trace DEP_FILE = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj.d @@ -7502,8 +6700,6 @@ build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/app_trace/include -I/home/igor/esp/esp-idf/components/app_trace/private_include -I/home/igor/esp/esp-idf/components/app_trace/port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir OBJECT_FILE_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port - TARGET_COMPILE_PDB = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/__idf_app_trace.pdb - TARGET_PDB = esp-idf/app_trace/libapp_trace.pdb # ============================================================================= @@ -7518,9 +6714,8 @@ build esp-idf/app_trace/libapp_trace.a: C_STATIC_LIBRARY_LINKER____idf_app_trace OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/__idf_app_trace.pdb TARGET_FILE = esp-idf/app_trace/libapp_trace.a - TARGET_PDB = esp-idf/app_trace/libapp_trace.pdb + TARGET_PDB = app_trace.a.dbg ############################################# @@ -7607,8 +6802,6 @@ build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj: C_COMPILER____idf_vfs_unsc INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/vfs/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir OBJECT_FILE_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir - TARGET_COMPILE_PDB = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/__idf_vfs.pdb - TARGET_PDB = esp-idf/vfs/libvfs.pdb build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj: C_COMPILER____idf_vfs_unscanned_ /home/igor/esp/esp-idf/components/vfs/vfs_eventfd.c || cmake_object_order_depends_target___idf_vfs DEP_FILE = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj.d @@ -7616,8 +6809,6 @@ build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj: C_COMPILER____idf_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/vfs/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir OBJECT_FILE_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir - TARGET_COMPILE_PDB = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/__idf_vfs.pdb - TARGET_PDB = esp-idf/vfs/libvfs.pdb build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj: C_COMPILER____idf_vfs_unscanned_ /home/igor/esp/esp-idf/components/vfs/vfs_uart.c || cmake_object_order_depends_target___idf_vfs DEP_FILE = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj.d @@ -7625,8 +6816,6 @@ build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj: C_COMPILER____idf_vfs INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/vfs/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir OBJECT_FILE_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir - TARGET_COMPILE_PDB = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/__idf_vfs.pdb - TARGET_PDB = esp-idf/vfs/libvfs.pdb build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj: C_COMPILER____idf_vfs_unscanned_ /home/igor/esp/esp-idf/components/vfs/vfs_semihost.c || cmake_object_order_depends_target___idf_vfs DEP_FILE = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj.d @@ -7634,8 +6823,6 @@ build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj: C_COMPILER____idf INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/vfs/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir OBJECT_FILE_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir - TARGET_COMPILE_PDB = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/__idf_vfs.pdb - TARGET_PDB = esp-idf/vfs/libvfs.pdb build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj: C_COMPILER____idf_vfs_unscanned_ /home/igor/esp/esp-idf/components/vfs/vfs_console.c || cmake_object_order_depends_target___idf_vfs DEP_FILE = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj.d @@ -7643,8 +6830,6 @@ build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj: C_COMPILER____idf_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/vfs/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir OBJECT_FILE_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir - TARGET_COMPILE_PDB = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/__idf_vfs.pdb - TARGET_PDB = esp-idf/vfs/libvfs.pdb # ============================================================================= @@ -7659,9 +6844,8 @@ build esp-idf/vfs/libvfs.a: C_STATIC_LIBRARY_LINKER____idf_vfs_ esp-idf/vfs/CMak OBJECT_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/__idf_vfs.pdb TARGET_FILE = esp-idf/vfs/libvfs.a - TARGET_PDB = esp-idf/vfs/libvfs.pdb + TARGET_PDB = vfs.a.dbg ############################################# @@ -7748,8 +6932,6 @@ build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_netif/lwip -I/home/igor/esp/esp-idf/components/esp_netif/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb - TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj: C_COMPILER____idf_esp_netif_unscanned_ /home/igor/esp/esp-idf/components/esp_netif/esp_netif_objects.c || cmake_object_order_depends_target___idf_esp_netif DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj.d @@ -7757,8 +6939,6 @@ build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_netif/lwip -I/home/igor/esp/esp-idf/components/esp_netif/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb - TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj: C_COMPILER____idf_esp_netif_unscanned_ /home/igor/esp/esp-idf/components/esp_netif/esp_netif_defaults.c || cmake_object_order_depends_target___idf_esp_netif DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj.d @@ -7766,8 +6946,6 @@ build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_netif/lwip -I/home/igor/esp/esp-idf/components/esp_netif/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb - TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj: C_COMPILER____idf_esp_netif_unscanned_ /home/igor/esp/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c || cmake_object_order_depends_target___idf_esp_netif DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj.d @@ -7775,8 +6953,6 @@ build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_netif/lwip -I/home/igor/esp/esp-idf/components/esp_netif/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip - TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb - TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj: C_COMPILER____idf_esp_netif_unscanned_ /home/igor/esp/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c || cmake_object_order_depends_target___idf_esp_netif DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj.d @@ -7784,8 +6960,6 @@ build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defau INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_netif/lwip -I/home/igor/esp/esp-idf/components/esp_netif/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip - TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb - TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj: C_COMPILER____idf_esp_netif_unscanned_ /home/igor/esp/esp-idf/components/esp_netif/lwip/esp_netif_sta_list.c || cmake_object_order_depends_target___idf_esp_netif DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj.d @@ -7793,8 +6967,6 @@ build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_netif/lwip -I/home/igor/esp/esp-idf/components/esp_netif/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip - TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb - TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj: C_COMPILER____idf_esp_netif_unscanned_ /home/igor/esp/esp-idf/components/esp_netif/loopback/esp_netif_loopback.c || cmake_object_order_depends_target___idf_esp_netif DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj.d @@ -7802,8 +6974,6 @@ build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopba INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_netif/lwip -I/home/igor/esp/esp-idf/components/esp_netif/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback - TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb - TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb # ============================================================================= @@ -7818,9 +6988,8 @@ build esp-idf/esp_netif/libesp_netif.a: C_STATIC_LIBRARY_LINKER____idf_esp_netif OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb TARGET_FILE = esp-idf/esp_netif/libesp_netif.a - TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb + TARGET_PDB = esp_netif.a.dbg ############################################# @@ -7907,8 +7076,6 @@ build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj: C_COMPILER INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_eth/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb - TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj: C_COMPILER____idf_esp_eth_unscanned_ /home/igor/esp/esp-idf/components/esp_eth/src/esp_eth_phy.c || cmake_object_order_depends_target___idf_esp_eth DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj.d @@ -7916,8 +7083,6 @@ build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_eth/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb - TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj: C_COMPILER____idf_esp_eth_unscanned_ /home/igor/esp/esp-idf/components/esp_eth/src/esp_eth_netif_glue.c || cmake_object_order_depends_target___idf_esp_eth DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj.d @@ -7925,8 +7090,6 @@ build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_eth/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb - TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp.c.obj: C_COMPILER____idf_esp_eth_unscanned_ /home/igor/esp/esp-idf/components/esp_eth/src/esp_eth_mac_esp.c || cmake_object_order_depends_target___idf_esp_eth DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp.c.obj.d @@ -7934,8 +7097,6 @@ build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_eth/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb - TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj: C_COMPILER____idf_esp_eth_unscanned_ /home/igor/esp/esp-idf/components/esp_eth/src/esp_eth_phy_dp83848.c || cmake_object_order_depends_target___idf_esp_eth DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj.d @@ -7943,8 +7104,6 @@ build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_eth/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb - TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj: C_COMPILER____idf_esp_eth_unscanned_ /home/igor/esp/esp-idf/components/esp_eth/src/esp_eth_phy_ip101.c || cmake_object_order_depends_target___idf_esp_eth DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj.d @@ -7952,8 +7111,6 @@ build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_eth/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb - TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ksz80xx.c.obj: C_COMPILER____idf_esp_eth_unscanned_ /home/igor/esp/esp-idf/components/esp_eth/src/esp_eth_phy_ksz80xx.c || cmake_object_order_depends_target___idf_esp_eth DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ksz80xx.c.obj.d @@ -7961,8 +7118,6 @@ build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ksz80xx.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_eth/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb - TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan87xx.c.obj: C_COMPILER____idf_esp_eth_unscanned_ /home/igor/esp/esp-idf/components/esp_eth/src/esp_eth_phy_lan87xx.c || cmake_object_order_depends_target___idf_esp_eth DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan87xx.c.obj.d @@ -7970,8 +7125,6 @@ build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan87xx.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_eth/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb - TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj: C_COMPILER____idf_esp_eth_unscanned_ /home/igor/esp/esp-idf/components/esp_eth/src/esp_eth_phy_rtl8201.c || cmake_object_order_depends_target___idf_esp_eth DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj.d @@ -7979,8 +7132,6 @@ build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_eth/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb - TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb # ============================================================================= @@ -7995,9 +7146,8 @@ build esp-idf/esp_eth/libesp_eth.a: C_STATIC_LIBRARY_LINKER____idf_esp_eth_ esp- OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb TARGET_FILE = esp-idf/esp_eth/libesp_eth.a - TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb + TARGET_PDB = esp_eth.a.dbg ############################################# @@ -8084,8 +7234,6 @@ build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_event/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir OBJECT_FILE_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir - TARGET_COMPILE_PDB = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/__idf_esp_event.pdb - TARGET_PDB = esp-idf/esp_event/libesp_event.pdb build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj: C_COMPILER____idf_esp_event_unscanned_ /home/igor/esp/esp-idf/components/esp_event/esp_event.c || cmake_object_order_depends_target___idf_esp_event DEP_FILE = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj.d @@ -8093,8 +7241,6 @@ build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_event/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir OBJECT_FILE_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir - TARGET_COMPILE_PDB = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/__idf_esp_event.pdb - TARGET_PDB = esp-idf/esp_event/libesp_event.pdb build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj: C_COMPILER____idf_esp_event_unscanned_ /home/igor/esp/esp-idf/components/esp_event/esp_event_private.c || cmake_object_order_depends_target___idf_esp_event DEP_FILE = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj.d @@ -8102,8 +7248,6 @@ build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_event/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir OBJECT_FILE_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir - TARGET_COMPILE_PDB = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/__idf_esp_event.pdb - TARGET_PDB = esp-idf/esp_event/libesp_event.pdb # ============================================================================= @@ -8118,9 +7262,8 @@ build esp-idf/esp_event/libesp_event.a: C_STATIC_LIBRARY_LINKER____idf_esp_event OBJECT_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/__idf_esp_event.pdb TARGET_FILE = esp-idf/esp_event/libesp_event.a - TARGET_PDB = esp-idf/esp_event/libesp_event.pdb + TARGET_PDB = esp_event.a.dbg ############################################# @@ -8207,8 +7350,6 @@ build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj: CXX_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/nvs_flash/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb - TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/igor/esp/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp || cmake_object_order_depends_target___idf_nvs_flash DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj.d @@ -8216,8 +7357,6 @@ build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/nvs_flash/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb - TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/igor/esp/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp || cmake_object_order_depends_target___idf_nvs_flash DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj.d @@ -8225,8 +7364,6 @@ build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cp INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/nvs_flash/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb - TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/igor/esp/esp-idf/components/nvs_flash/src/nvs_page.cpp || cmake_object_order_depends_target___idf_nvs_flash DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj.d @@ -8234,8 +7371,6 @@ build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj: CXX INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/nvs_flash/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb - TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/igor/esp/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp || cmake_object_order_depends_target___idf_nvs_flash DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj.d @@ -8243,8 +7378,6 @@ build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/nvs_flash/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb - TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/igor/esp/esp-idf/components/nvs_flash/src/nvs_storage.cpp || cmake_object_order_depends_target___idf_nvs_flash DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj.d @@ -8252,8 +7385,6 @@ build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/nvs_flash/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb - TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/igor/esp/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp || cmake_object_order_depends_target___idf_nvs_flash DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj.d @@ -8261,8 +7392,6 @@ build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/nvs_flash/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb - TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/igor/esp/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp || cmake_object_order_depends_target___idf_nvs_flash DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj.d @@ -8270,8 +7399,6 @@ build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/nvs_flash/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb - TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/igor/esp/esp-idf/components/nvs_flash/src/nvs_partition.cpp || cmake_object_order_depends_target___idf_nvs_flash DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj.d @@ -8279,8 +7406,6 @@ build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/nvs_flash/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb - TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/igor/esp/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp || cmake_object_order_depends_target___idf_nvs_flash DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj.d @@ -8288,8 +7413,6 @@ build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/nvs_flash/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb - TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/igor/esp/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp || cmake_object_order_depends_target___idf_nvs_flash DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj.d @@ -8297,8 +7420,6 @@ build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/nvs_flash/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb - TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/igor/esp/esp-idf/components/nvs_flash/src/nvs_types.cpp || cmake_object_order_depends_target___idf_nvs_flash DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj.d @@ -8306,8 +7427,6 @@ build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj: CX INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/nvs_flash/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb - TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb # ============================================================================= @@ -8322,9 +7441,8 @@ build esp-idf/nvs_flash/libnvs_flash.a: C_STATIC_LIBRARY_LINKER____idf_nvs_flash OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb TARGET_FILE = esp-idf/nvs_flash/libnvs_flash.a - TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb + TARGET_PDB = nvs_flash.a.dbg ############################################# @@ -8411,8 +7529,6 @@ build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir OBJECT_FILE_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/__idf_esp_phy.pdb - TARGET_PDB = esp-idf/esp_phy/libesp_phy.pdb build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj: C_COMPILER____idf_esp_phy_unscanned_ /home/igor/esp/esp-idf/components/esp_phy/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_phy DEP_FILE = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj.d @@ -8420,8 +7536,6 @@ build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj: C_COMPI INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir OBJECT_FILE_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/__idf_esp_phy.pdb - TARGET_PDB = esp-idf/esp_phy/libesp_phy.pdb build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj: C_COMPILER____idf_esp_phy_unscanned_ /home/igor/esp/esp-idf/components/esp_phy/src/phy_init.c || cmake_object_order_depends_target___idf_esp_phy DEP_FILE = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj.d @@ -8429,8 +7543,6 @@ build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir OBJECT_FILE_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/__idf_esp_phy.pdb - TARGET_PDB = esp-idf/esp_phy/libesp_phy.pdb # ============================================================================= @@ -8445,9 +7557,8 @@ build esp-idf/esp_phy/libesp_phy.a: C_STATIC_LIBRARY_LINKER____idf_esp_phy_ esp- OBJECT_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/__idf_esp_phy.pdb TARGET_FILE = esp-idf/esp_phy/libesp_phy.a - TARGET_PDB = esp-idf/esp_phy/libesp_phy.pdb + TARGET_PDB = esp_phy.a.dbg ############################################# @@ -8535,8 +7646,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/port/eloop.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8545,8 +7654,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/ap/ap_config.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8555,8 +7662,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_confi INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/ap/ieee802_1x.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8565,8 +7670,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/ap/wpa_auth.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8575,8 +7678,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/ap/wpa_auth_ie.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8585,8 +7686,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/ap/sta_info.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8595,8 +7694,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/common/sae.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8605,8 +7702,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/common/wpa_common.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8615,8 +7710,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/utils/bitfield.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8625,8 +7718,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfi INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-siv.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8635,8 +7726,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes- INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/sha256-kdf.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8645,8 +7734,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha2 INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/ccmp.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8655,8 +7742,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-gcm.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8665,8 +7750,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes- INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_ops.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8675,8 +7758,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/cryp INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/dh_group5.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8685,8 +7766,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_g INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/dh_groups.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8695,8 +7774,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_g INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/ms_funcs.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8705,8 +7782,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_f INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/sha1-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8715,8 +7790,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1 INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/sha256-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8725,8 +7798,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha2 INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/sha384-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8735,8 +7806,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha3 INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/sha256-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8745,8 +7814,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha2 INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/sha1-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8755,8 +7822,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1 INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/sha384-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8765,8 +7830,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha3 INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/md4-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8775,8 +7838,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4- INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/sha1-tprf.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8785,8 +7846,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1 INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/eap_common/eap_wsc_common.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8795,8 +7854,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/common/ieee802_11_common.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8805,8 +7862,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/eap_peer/chap.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8815,8 +7870,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/ch INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8825,8 +7878,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/ea INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_common.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8835,8 +7886,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/ea INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8845,8 +7894,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/ea INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8855,8 +7902,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/ea INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap_common.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8865,8 +7910,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/ea INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8875,8 +7918,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/ea INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls_common.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8885,8 +7926,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/ea INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_ttls.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8895,8 +7934,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/ea INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/eap_peer/mschapv2.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8905,8 +7942,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/ms INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8915,8 +7950,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/ea INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_common.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8925,8 +7958,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/ea INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_pac.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8935,8 +7966,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/ea INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8945,8 +7974,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pm INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8955,8 +7982,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wp INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa_ie.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8965,8 +7990,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wp INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/utils/base64.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8975,8 +7998,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base6 INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/utils/common.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8985,8 +8006,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/commo INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/utils/ext_password.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -8995,8 +8014,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_p INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/utils/uuid.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9005,8 +8022,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/utils/wpabuf.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9015,8 +8030,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabu INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/utils/wpa_debug.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9025,8 +8038,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_d INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/utils/json.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9035,8 +8046,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/wps/wps.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9045,8 +8054,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/wps/wps_attr_build.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9055,8 +8062,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_att INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/wps/wps_attr_parse.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9065,8 +8070,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_att INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/wps/wps_attr_process.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9075,8 +8078,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_att INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/wps/wps_common.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9085,8 +8086,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_com INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/wps/wps_dev_attr.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9095,8 +8094,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/wps/wps_enrollee.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9105,8 +8102,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enr INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa2.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9115,8 +8110,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9125,8 +8118,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9135,8 +8126,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_common.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9145,8 +8134,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wps.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9155,8 +8142,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9165,8 +8150,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_owe.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9175,8 +8158,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9185,8 +8166,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9195,8 +8174,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9205,8 +8182,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9215,8 +8190,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9225,8 +8198,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9235,8 +8206,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/rc4.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9245,8 +8214,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/des-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9255,8 +8222,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des- INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-omac1.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9265,8 +8230,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes- INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-wrap.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9275,8 +8238,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes- INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-unwrap.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9285,8 +8246,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes- INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-ccm.c || cmake_object_order_depends_target___idf_wpa_supplicant DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ @@ -9295,8 +8254,6 @@ build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes- INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/utils -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/igor/esp/esp-idf/components/wpa_supplicant/src/crypto -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb # ============================================================================= @@ -9311,9 +8268,8 @@ build esp-idf/wpa_supplicant/libwpa_supplicant.a: C_STATIC_LIBRARY_LINKER____idf OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb TARGET_FILE = esp-idf/wpa_supplicant/libwpa_supplicant.a - TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb + TARGET_PDB = wpa_supplicant.a.dbg ############################################# @@ -9400,8 +8356,6 @@ build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb - TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/igor/esp/esp-idf/components/esp_wifi/src/mesh_event.c || cmake_object_order_depends_target___idf_esp_wifi DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj.d @@ -9409,8 +8363,6 @@ build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb - TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/igor/esp/esp-idf/components/esp_wifi/src/smartconfig.c || cmake_object_order_depends_target___idf_esp_wifi DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj.d @@ -9418,8 +8370,6 @@ build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb - TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/igor/esp/esp-idf/components/esp_wifi/src/smartconfig_ack.c || cmake_object_order_depends_target___idf_esp_wifi DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj.d @@ -9427,8 +8377,6 @@ build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb - TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/igor/esp/esp-idf/components/esp_wifi/src/wifi_init.c || cmake_object_order_depends_target___idf_esp_wifi DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj.d @@ -9436,8 +8384,6 @@ build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb - TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/igor/esp/esp-idf/components/esp_wifi/src/wifi_default.c || cmake_object_order_depends_target___idf_esp_wifi DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj.d @@ -9445,8 +8391,6 @@ build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb - TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/igor/esp/esp-idf/components/esp_wifi/src/wifi_netif.c || cmake_object_order_depends_target___idf_esp_wifi DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj.d @@ -9454,8 +8398,6 @@ build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb - TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/igor/esp/esp-idf/components/esp_wifi/esp32/esp_adapter.c || cmake_object_order_depends_target___idf_esp_wifi DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj.d @@ -9463,8 +8405,6 @@ build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb - TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb # ============================================================================= @@ -9479,9 +8419,8 @@ build esp-idf/esp_wifi/libesp_wifi.a: C_STATIC_LIBRARY_LINKER____idf_esp_wifi_ e OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb TARGET_FILE = esp-idf/esp_wifi/libesp_wifi.a - TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb + TARGET_PDB = esp_wifi.a.dbg ############################################# @@ -9568,8 +8507,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/api/api_lib.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj.d @@ -9577,8 +8514,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj: C_COMPI INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/api/api_msg.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj.d @@ -9586,8 +8521,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj: C_COMPI INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/api/err.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj.d @@ -9595,8 +8528,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj: C_COMPILER_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/api/if_api.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj.d @@ -9604,8 +8535,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/api/netbuf.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj.d @@ -9613,8 +8542,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/api/netdb.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj.d @@ -9622,8 +8549,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/api/netifapi.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj.d @@ -9631,8 +8556,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/api/sockets.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj.d @@ -9640,8 +8563,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj: C_COMPI INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/api/tcpip.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj.d @@ -9649,8 +8570,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj.d @@ -9658,8 +8577,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj.d @@ -9667,8 +8584,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/def.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj.d @@ -9676,8 +8591,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj: C_COMPILER INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/dns.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj.d @@ -9685,8 +8598,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj: C_COMPILER INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/inet_chksum.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj.d @@ -9694,8 +8605,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/init.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj.d @@ -9703,8 +8612,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ip.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj.d @@ -9712,8 +8619,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj: C_COMPILER_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/mem.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj.d @@ -9721,8 +8626,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj: C_COMPILER INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/memp.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj.d @@ -9730,8 +8633,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/netif.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj.d @@ -9739,8 +8640,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/pbuf.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj.d @@ -9748,8 +8647,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/raw.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj.d @@ -9757,8 +8654,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj: C_COMPILER INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/stats.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj.d @@ -9766,8 +8661,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/sys.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj.d @@ -9775,8 +8668,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj: C_COMPILER INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/tcp.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj.d @@ -9784,8 +8675,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj: C_COMPILER INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/tcp_in.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj.d @@ -9793,8 +8682,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj: C_COMPI INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/tcp_out.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj.d @@ -9802,8 +8689,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/timeouts.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj.d @@ -9811,8 +8696,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/udp.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj.d @@ -9820,8 +8703,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj: C_COMPILER INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj.d @@ -9829,8 +8710,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj.d @@ -9838,8 +8717,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj.d @@ -9847,8 +8724,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj.d @@ -9856,8 +8731,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj.d @@ -9865,8 +8738,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj.d @@ -9874,8 +8745,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_napt.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj.d @@ -9883,8 +8752,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj.d @@ -9892,8 +8759,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj.d @@ -9901,8 +8766,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj.d @@ -9910,8 +8773,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj.d @@ -9919,8 +8780,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj.d @@ -9928,8 +8787,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj.d @@ -9937,8 +8794,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj.d @@ -9946,8 +8801,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj.d @@ -9955,8 +8808,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj.d @@ -9964,8 +8815,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj.d @@ -9973,8 +8822,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj.d @@ -9982,8 +8829,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ethernet.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj.d @@ -9991,8 +8836,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/slipif.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj.d @@ -10000,8 +8843,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj.d @@ -10009,8 +8850,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj.d @@ -10018,8 +8857,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj.d @@ -10027,8 +8864,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj.d @@ -10036,8 +8871,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj.d @@ -10045,8 +8878,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj.d @@ -10054,8 +8885,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj.d @@ -10063,8 +8892,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj.d @@ -10072,8 +8899,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj.d @@ -10081,8 +8906,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj.d @@ -10090,8 +8913,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj.d @@ -10099,8 +8920,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj.d @@ -10108,8 +8927,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj.d @@ -10117,8 +8934,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj.d @@ -10126,8 +8941,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj.d @@ -10135,8 +8948,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj.d @@ -10144,8 +8955,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj.d @@ -10153,8 +8962,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj.d @@ -10162,8 +8969,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj.d @@ -10171,8 +8976,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj.d @@ -10180,8 +8983,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj.d @@ -10189,8 +8990,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj.d @@ -10198,8 +8997,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj.d @@ -10207,8 +9004,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj.d @@ -10216,8 +9011,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj.d @@ -10225,8 +9018,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/tcp_isn_default.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/port/esp32/hooks/tcp_isn_default.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/tcp_isn_default.c.obj.d @@ -10234,8 +9025,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/tcp_isn_default.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/lwip_default_hooks.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/port/esp32/hooks/lwip_default_hooks.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/lwip_default_hooks.c.obj.d @@ -10243,8 +9032,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/lwip_default_hooks INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/port/esp32/debug/lwip_debug.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj.d @@ -10252,8 +9039,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/port/esp32/freertos/sys_arch.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj.d @@ -10261,8 +9046,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/sockets_ext.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/port/esp32/sockets_ext.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/sockets_ext.c.obj.d @@ -10270,8 +9053,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/sockets_ext.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/port/esp32/netif/wlanif.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj.d @@ -10279,8 +9060,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/esp_pbuf_ref.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/port/esp32/netif/esp_pbuf_ref.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/esp_pbuf_ref.c.obj.d @@ -10288,8 +9067,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/esp_pbuf_ref.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/port/esp32/netif/ethernetif.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj.d @@ -10297,8 +9074,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/port/esp32/vfs_lwip.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj.d @@ -10306,8 +9081,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32 - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/apps/ping/esp_ping.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj.d @@ -10315,8 +9088,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/apps/ping/ping.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj.d @@ -10324,8 +9095,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/apps/ping/ping_sock.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj.d @@ -10333,8 +9102,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/igor/esp/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c || cmake_object_order_depends_target___idf_lwip DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj.d @@ -10342,8 +9109,6 @@ build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb - TARGET_PDB = esp-idf/lwip/liblwip.pdb # ============================================================================= @@ -10358,9 +9123,8 @@ build esp-idf/lwip/liblwip.a: C_STATIC_LIBRARY_LINKER____idf_lwip_ esp-idf/lwip/ OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb TARGET_FILE = esp-idf/lwip/liblwip.a - TARGET_PDB = esp-idf/lwip/liblwip.pdb + TARGET_PDB = lwip.a.dbg ############################################# @@ -10447,8 +9211,6 @@ build esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj: CXX_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/asio/asio/asio/include -I/home/igor/esp/esp-idf/components/asio/port/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/asio/CMakeFiles/__idf_asio.dir OBJECT_FILE_DIR = esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src - TARGET_COMPILE_PDB = esp-idf/asio/CMakeFiles/__idf_asio.dir/__idf_asio.pdb - TARGET_PDB = esp-idf/asio/libasio.pdb # ============================================================================= @@ -10463,9 +9225,8 @@ build esp-idf/asio/libasio.a: C_STATIC_LIBRARY_LINKER____idf_asio_ esp-idf/asio/ OBJECT_DIR = esp-idf/asio/CMakeFiles/__idf_asio.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/asio/CMakeFiles/__idf_asio.dir/__idf_asio.pdb TARGET_FILE = esp-idf/asio/libasio.a - TARGET_PDB = esp-idf/asio/libasio.pdb + TARGET_PDB = asio.a.dbg ############################################# @@ -10623,8 +9384,6 @@ build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj: C_COMPILER INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/unity/include -I/home/igor/esp/esp-idf/components/unity/unity/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src - TARGET_COMPILE_PDB = esp-idf/unity/CMakeFiles/__idf_unity.dir/__idf_unity.pdb - TARGET_PDB = esp-idf/unity/libunity.pdb build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj: C_COMPILER____idf_unity_unscanned_ /home/igor/esp/esp-idf/components/unity/unity_runner.c || cmake_object_order_depends_target___idf_unity DEFINES = -DUNITY_INCLUDE_CONFIG_H @@ -10633,8 +9392,6 @@ build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/unity/include -I/home/igor/esp/esp-idf/components/unity/unity/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - TARGET_COMPILE_PDB = esp-idf/unity/CMakeFiles/__idf_unity.dir/__idf_unity.pdb - TARGET_PDB = esp-idf/unity/libunity.pdb build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj: C_COMPILER____idf_unity_unscanned_ /home/igor/esp/esp-idf/components/unity/unity_utils_freertos.c || cmake_object_order_depends_target___idf_unity DEFINES = -DUNITY_INCLUDE_CONFIG_H @@ -10643,8 +9400,6 @@ build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/unity/include -I/home/igor/esp/esp-idf/components/unity/unity/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - TARGET_COMPILE_PDB = esp-idf/unity/CMakeFiles/__idf_unity.dir/__idf_unity.pdb - TARGET_PDB = esp-idf/unity/libunity.pdb build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj: C_COMPILER____idf_unity_unscanned_ /home/igor/esp/esp-idf/components/unity/unity_utils_memory.c || cmake_object_order_depends_target___idf_unity DEFINES = -DUNITY_INCLUDE_CONFIG_H @@ -10653,8 +9408,6 @@ build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj: C_COMPI INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/unity/include -I/home/igor/esp/esp-idf/components/unity/unity/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - TARGET_COMPILE_PDB = esp-idf/unity/CMakeFiles/__idf_unity.dir/__idf_unity.pdb - TARGET_PDB = esp-idf/unity/libunity.pdb build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj: C_COMPILER____idf_unity_unscanned_ /home/igor/esp/esp-idf/components/unity/unity_port_esp32.c || cmake_object_order_depends_target___idf_unity DEFINES = -DUNITY_INCLUDE_CONFIG_H @@ -10663,8 +9416,6 @@ build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/unity/include -I/home/igor/esp/esp-idf/components/unity/unity/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - TARGET_COMPILE_PDB = esp-idf/unity/CMakeFiles/__idf_unity.dir/__idf_unity.pdb - TARGET_PDB = esp-idf/unity/libunity.pdb build esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj: C_COMPILER____idf_unity_unscanned_ /home/igor/esp/esp-idf/components/unity/port/esp/unity_utils_memory_esp.c || cmake_object_order_depends_target___idf_unity DEFINES = -DUNITY_INCLUDE_CONFIG_H @@ -10673,8 +9424,6 @@ build esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/unity/include -I/home/igor/esp/esp-idf/components/unity/unity/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp - TARGET_COMPILE_PDB = esp-idf/unity/CMakeFiles/__idf_unity.dir/__idf_unity.pdb - TARGET_PDB = esp-idf/unity/libunity.pdb # ============================================================================= @@ -10689,9 +9438,8 @@ build esp-idf/unity/libunity.a: C_STATIC_LIBRARY_LINKER____idf_unity_ esp-idf/un OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/unity/CMakeFiles/__idf_unity.dir/__idf_unity.pdb TARGET_FILE = esp-idf/unity/libunity.a - TARGET_PDB = esp-idf/unity/libunity.pdb + TARGET_PDB = unity.a.dbg ############################################# @@ -10779,8 +9527,6 @@ build esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj: C_COMPILER INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/cmock/CMock/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/unity/include -I/home/igor/esp/esp-idf/components/unity/unity/src OBJECT_DIR = esp-idf/cmock/CMakeFiles/__idf_cmock.dir OBJECT_FILE_DIR = esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src - TARGET_COMPILE_PDB = esp-idf/cmock/CMakeFiles/__idf_cmock.dir/__idf_cmock.pdb - TARGET_PDB = esp-idf/cmock/libcmock.pdb # ============================================================================= @@ -10795,9 +9541,8 @@ build esp-idf/cmock/libcmock.a: C_STATIC_LIBRARY_LINKER____idf_cmock_ esp-idf/cm OBJECT_DIR = esp-idf/cmock/CMakeFiles/__idf_cmock.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/cmock/CMakeFiles/__idf_cmock.dir/__idf_cmock.pdb TARGET_FILE = esp-idf/cmock/libcmock.a - TARGET_PDB = esp-idf/cmock/libcmock.pdb + TARGET_PDB = cmock.a.dbg ############################################# @@ -10884,8 +9629,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/esp_console_repl.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj.d @@ -10893,8 +9636,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/split_argv.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj.d @@ -10902,8 +9643,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj: C_COMPILER_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/linenoise/linenoise.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj.d @@ -10911,8 +9650,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/linenoise - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/argtable3/arg_cmd.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj.d @@ -10920,8 +9657,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/argtable3/arg_date.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj.d @@ -10929,8 +9664,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/argtable3/arg_dbl.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj.d @@ -10938,8 +9671,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/argtable3/arg_dstr.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj.d @@ -10947,8 +9678,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/argtable3/arg_end.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj.d @@ -10956,8 +9685,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/argtable3/arg_file.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj.d @@ -10965,8 +9692,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/argtable3/arg_hashtable.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj.d @@ -10974,8 +9699,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/argtable3/arg_int.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj.d @@ -10983,8 +9706,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/argtable3/arg_lit.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj.d @@ -10992,8 +9713,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/argtable3/arg_rem.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj.d @@ -11001,8 +9720,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/argtable3/arg_rex.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj.d @@ -11010,8 +9727,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/argtable3/arg_str.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj.d @@ -11019,8 +9734,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj: C_CO INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/argtable3/arg_utils.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj.d @@ -11028,8 +9741,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj: C_COMPILER____idf_console_unscanned_ /home/igor/esp/esp-idf/components/console/argtable3/argtable3.c || cmake_object_order_depends_target___idf_console DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj.d @@ -11037,8 +9748,6 @@ build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb - TARGET_PDB = esp-idf/console/libconsole.pdb # ============================================================================= @@ -11053,9 +9762,8 @@ build esp-idf/console/libconsole.a: C_STATIC_LIBRARY_LINKER____idf_console_ esp- OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb TARGET_FILE = esp-idf/console/libconsole.a - TARGET_PDB = esp-idf/console/libconsole.pdb + TARGET_PDB = console.a.dbg ############################################# @@ -11142,8 +9850,6 @@ build esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir OBJECT_FILE_DIR = esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir - TARGET_COMPILE_PDB = esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/__idf_http_parser.pdb - TARGET_PDB = esp-idf/http_parser/libhttp_parser.pdb # ============================================================================= @@ -11158,9 +9864,8 @@ build esp-idf/http_parser/libhttp_parser.a: C_STATIC_LIBRARY_LINKER____idf_http_ OBJECT_DIR = esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/__idf_http_parser.pdb TARGET_FILE = esp-idf/http_parser/libhttp_parser.a - TARGET_PDB = esp-idf/http_parser/libhttp_parser.pdb + TARGET_PDB = http_parser.a.dbg ############################################# @@ -11248,8 +9953,6 @@ build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj: C_COMPILER____ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/esp-tls/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/http_parser OBJECT_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir OBJECT_FILE_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir - TARGET_COMPILE_PDB = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/__idf_esp-tls.pdb - TARGET_PDB = esp-idf/esp-tls/libesp-tls.pdb build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj: C_COMPILER____idf_esp-tls_unscanned_ /home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c || cmake_object_order_depends_target___idf_esp-tls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -11258,8 +9961,6 @@ build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/esp-tls/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/http_parser OBJECT_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir OBJECT_FILE_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto - TARGET_COMPILE_PDB = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/__idf_esp-tls.pdb - TARGET_PDB = esp-idf/esp-tls/libesp-tls.pdb build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj: C_COMPILER____idf_esp-tls_unscanned_ /home/igor/esp/esp-idf/components/esp-tls/esp_tls_error_capture.c || cmake_object_order_depends_target___idf_esp-tls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -11268,8 +9969,6 @@ build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/esp-tls/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/http_parser OBJECT_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir OBJECT_FILE_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir - TARGET_COMPILE_PDB = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/__idf_esp-tls.pdb - TARGET_PDB = esp-idf/esp-tls/libesp-tls.pdb build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj: C_COMPILER____idf_esp-tls_unscanned_ /home/igor/esp/esp-idf/components/esp-tls/esp_tls_mbedtls.c || cmake_object_order_depends_target___idf_esp-tls DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -11278,8 +9977,6 @@ build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/esp-tls/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/http_parser OBJECT_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir OBJECT_FILE_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir - TARGET_COMPILE_PDB = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/__idf_esp-tls.pdb - TARGET_PDB = esp-idf/esp-tls/libesp-tls.pdb # ============================================================================= @@ -11294,9 +9991,8 @@ build esp-idf/esp-tls/libesp-tls.a: C_STATIC_LIBRARY_LINKER____idf_esp-tls_ esp- OBJECT_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/__idf_esp-tls.pdb TARGET_FILE = esp-idf/esp-tls/libesp-tls.a - TARGET_PDB = esp-idf/esp-tls/libesp-tls.pdb + TARGET_PDB = esp-tls.a.dbg ############################################# @@ -11383,8 +10079,6 @@ build esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal_common.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_adc_cal/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include OBJECT_DIR = esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir OBJECT_FILE_DIR = esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir - TARGET_COMPILE_PDB = esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/__idf_esp_adc_cal.pdb - TARGET_PDB = esp-idf/esp_adc_cal/libesp_adc_cal.pdb build esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp32/esp_adc_cal.c.obj: C_COMPILER____idf_esp_adc_cal_unscanned_ /home/igor/esp/esp-idf/components/esp_adc_cal/esp32/esp_adc_cal.c || cmake_object_order_depends_target___idf_esp_adc_cal DEP_FILE = esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp32/esp_adc_cal.c.obj.d @@ -11392,8 +10086,6 @@ build esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp32/esp_adc_cal.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_adc_cal/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include OBJECT_DIR = esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir OBJECT_FILE_DIR = esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp32 - TARGET_COMPILE_PDB = esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/__idf_esp_adc_cal.pdb - TARGET_PDB = esp-idf/esp_adc_cal/libesp_adc_cal.pdb # ============================================================================= @@ -11408,9 +10100,8 @@ build esp-idf/esp_adc_cal/libesp_adc_cal.a: C_STATIC_LIBRARY_LINKER____idf_esp_a OBJECT_DIR = esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/__idf_esp_adc_cal.pdb TARGET_FILE = esp-idf/esp_adc_cal/libesp_adc_cal.a - TARGET_PDB = esp-idf/esp_adc_cal/libesp_adc_cal.pdb + TARGET_PDB = esp_adc_cal.a.dbg ############################################# @@ -11497,8 +10188,6 @@ build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/private_include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir OBJECT_FILE_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/__idf_esp_gdbstub.pdb - TARGET_PDB = esp-idf/esp_gdbstub/libesp_gdbstub.pdb build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ /home/igor/esp/esp-idf/components/esp_gdbstub/src/packet.c || cmake_object_order_depends_target___idf_esp_gdbstub DEP_FILE = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj.d @@ -11506,8 +10195,6 @@ build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/private_include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir OBJECT_FILE_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/__idf_esp_gdbstub.pdb - TARGET_PDB = esp-idf/esp_gdbstub/libesp_gdbstub.pdb build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ /home/igor/esp/esp-idf/components/esp_gdbstub/xtensa/gdbstub_xtensa.c || cmake_object_order_depends_target___idf_esp_gdbstub DEP_FILE = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj.d @@ -11515,8 +10202,6 @@ build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/private_include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir OBJECT_FILE_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa - TARGET_COMPILE_PDB = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/__idf_esp_gdbstub.pdb - TARGET_PDB = esp-idf/esp_gdbstub/libesp_gdbstub.pdb build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub-entry.S.obj: ASM_COMPILER____idf_esp_gdbstub_unscanned_ /home/igor/esp/esp-idf/components/esp_gdbstub/xtensa/gdbstub-entry.S || cmake_object_order_depends_target___idf_esp_gdbstub DEP_FILE = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub-entry.S.obj.d @@ -11524,8 +10209,6 @@ build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub-entry. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/private_include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir OBJECT_FILE_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa - TARGET_COMPILE_PDB = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/__idf_esp_gdbstub.pdb - TARGET_PDB = esp-idf/esp_gdbstub/libesp_gdbstub.pdb build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/xt_debugexception.S.obj: ASM_COMPILER____idf_esp_gdbstub_unscanned_ /home/igor/esp/esp-idf/components/esp_gdbstub/xtensa/xt_debugexception.S || cmake_object_order_depends_target___idf_esp_gdbstub DEP_FILE = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/xt_debugexception.S.obj.d @@ -11533,8 +10216,6 @@ build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/xt_debugexcept INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/private_include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir OBJECT_FILE_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa - TARGET_COMPILE_PDB = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/__idf_esp_gdbstub.pdb - TARGET_PDB = esp-idf/esp_gdbstub/libesp_gdbstub.pdb build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp_common/gdbstub_common.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ /home/igor/esp/esp-idf/components/esp_gdbstub/esp_common/gdbstub_common.c || cmake_object_order_depends_target___idf_esp_gdbstub DEP_FILE = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp_common/gdbstub_common.c.obj.d @@ -11542,8 +10223,6 @@ build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp_common/gdbstub_co INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/private_include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir OBJECT_FILE_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp_common - TARGET_COMPILE_PDB = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/__idf_esp_gdbstub.pdb - TARGET_PDB = esp-idf/esp_gdbstub/libesp_gdbstub.pdb # ============================================================================= @@ -11558,9 +10237,8 @@ build esp-idf/esp_gdbstub/libesp_gdbstub.a: C_STATIC_LIBRARY_LINKER____idf_esp_g OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/__idf_esp_gdbstub.pdb TARGET_FILE = esp-idf/esp_gdbstub/libesp_gdbstub.a - TARGET_PDB = esp-idf/esp_gdbstub/libesp_gdbstub.pdb + TARGET_PDB = esp_gdbstub.a.dbg ############################################# @@ -11648,8 +10326,6 @@ build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hid/include -I/home/igor/esp/esp-idf/components/esp_hid/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir OBJECT_FILE_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/__idf_esp_hid.pdb - TARGET_PDB = esp-idf/esp_hid/libesp_hid.pdb build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj: C_COMPILER____idf_esp_hid_unscanned_ /home/igor/esp/esp-idf/components/esp_hid/src/esp_hidh.c || cmake_object_order_depends_target___idf_esp_hid DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -11658,8 +10334,6 @@ build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hid/include -I/home/igor/esp/esp-idf/components/esp_hid/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir OBJECT_FILE_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/__idf_esp_hid.pdb - TARGET_PDB = esp-idf/esp_hid/libesp_hid.pdb build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj: C_COMPILER____idf_esp_hid_unscanned_ /home/igor/esp/esp-idf/components/esp_hid/src/esp_hid_common.c || cmake_object_order_depends_target___idf_esp_hid DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -11668,8 +10342,6 @@ build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_hid/include -I/home/igor/esp/esp-idf/components/esp_hid/private -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir OBJECT_FILE_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/__idf_esp_hid.pdb - TARGET_PDB = esp-idf/esp_hid/libesp_hid.pdb # ============================================================================= @@ -11684,9 +10356,8 @@ build esp-idf/esp_hid/libesp_hid.a: C_STATIC_LIBRARY_LINKER____idf_esp_hid_ esp- OBJECT_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/__idf_esp_hid.pdb TARGET_FILE = esp-idf/esp_hid/libesp_hid.a - TARGET_PDB = esp-idf/esp_hid/libesp_hid.pdb + TARGET_PDB = esp_hid.a.dbg ############################################# @@ -11774,8 +10445,6 @@ build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/tcp_transport/include -I/home/igor/esp/esp-idf/components/tcp_transport/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir OBJECT_FILE_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir - TARGET_COMPILE_PDB = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/__idf_tcp_transport.pdb - TARGET_PDB = esp-idf/tcp_transport/libtcp_transport.pdb build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ /home/igor/esp/esp-idf/components/tcp_transport/transport_ssl.c || cmake_object_order_depends_target___idf_tcp_transport DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -11784,8 +10453,6 @@ build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/tcp_transport/include -I/home/igor/esp/esp-idf/components/tcp_transport/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir OBJECT_FILE_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir - TARGET_COMPILE_PDB = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/__idf_tcp_transport.pdb - TARGET_PDB = esp-idf/tcp_transport/libtcp_transport.pdb build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ /home/igor/esp/esp-idf/components/tcp_transport/transport_utils.c || cmake_object_order_depends_target___idf_tcp_transport DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -11794,8 +10461,6 @@ build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/tcp_transport/include -I/home/igor/esp/esp-idf/components/tcp_transport/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir OBJECT_FILE_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir - TARGET_COMPILE_PDB = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/__idf_tcp_transport.pdb - TARGET_PDB = esp-idf/tcp_transport/libtcp_transport.pdb build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ /home/igor/esp/esp-idf/components/tcp_transport/transport_ws.c || cmake_object_order_depends_target___idf_tcp_transport DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -11804,8 +10469,6 @@ build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/tcp_transport/include -I/home/igor/esp/esp-idf/components/tcp_transport/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir OBJECT_FILE_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir - TARGET_COMPILE_PDB = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/__idf_tcp_transport.pdb - TARGET_PDB = esp-idf/tcp_transport/libtcp_transport.pdb # ============================================================================= @@ -11820,9 +10483,8 @@ build esp-idf/tcp_transport/libtcp_transport.a: C_STATIC_LIBRARY_LINKER____idf_t OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/__idf_tcp_transport.pdb TARGET_FILE = esp-idf/tcp_transport/libtcp_transport.a - TARGET_PDB = esp-idf/tcp_transport/libtcp_transport.pdb + TARGET_PDB = tcp_transport.a.dbg ############################################# @@ -11910,8 +10572,6 @@ build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_clie INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_http_client/include -I/home/igor/esp/esp-idf/components/esp_http_client/lib/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/tcp_transport/include -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir OBJECT_FILE_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir - TARGET_COMPILE_PDB = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/__idf_esp_http_client.pdb - TARGET_PDB = esp-idf/esp_http_client/libesp_http_client.pdb build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj: C_COMPILER____idf_esp_http_client_unscanned_ /home/igor/esp/esp-idf/components/esp_http_client/lib/http_auth.c || cmake_object_order_depends_target___idf_esp_http_client DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -11920,8 +10580,6 @@ build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_http_client/include -I/home/igor/esp/esp-idf/components/esp_http_client/lib/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/tcp_transport/include -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir OBJECT_FILE_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib - TARGET_COMPILE_PDB = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/__idf_esp_http_client.pdb - TARGET_PDB = esp-idf/esp_http_client/libesp_http_client.pdb build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj: C_COMPILER____idf_esp_http_client_unscanned_ /home/igor/esp/esp-idf/components/esp_http_client/lib/http_header.c || cmake_object_order_depends_target___idf_esp_http_client DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -11930,8 +10588,6 @@ build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_head INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_http_client/include -I/home/igor/esp/esp-idf/components/esp_http_client/lib/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/tcp_transport/include -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir OBJECT_FILE_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib - TARGET_COMPILE_PDB = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/__idf_esp_http_client.pdb - TARGET_PDB = esp-idf/esp_http_client/libesp_http_client.pdb build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj: C_COMPILER____idf_esp_http_client_unscanned_ /home/igor/esp/esp-idf/components/esp_http_client/lib/http_utils.c || cmake_object_order_depends_target___idf_esp_http_client DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -11940,8 +10596,6 @@ build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_util INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_http_client/include -I/home/igor/esp/esp-idf/components/esp_http_client/lib/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/tcp_transport/include -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir OBJECT_FILE_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib - TARGET_COMPILE_PDB = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/__idf_esp_http_client.pdb - TARGET_PDB = esp-idf/esp_http_client/libesp_http_client.pdb # ============================================================================= @@ -11956,9 +10610,8 @@ build esp-idf/esp_http_client/libesp_http_client.a: C_STATIC_LIBRARY_LINKER____i OBJECT_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/__idf_esp_http_client.pdb TARGET_FILE = esp-idf/esp_http_client/libesp_http_client.a - TARGET_PDB = esp-idf/esp_http_client/libesp_http_client.pdb + TARGET_PDB = esp_http_client.a.dbg ############################################# @@ -12046,8 +10699,6 @@ build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_mai INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/igor/esp/esp-idf/components/esp_http_server/src/util -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/__idf_esp_http_server.pdb - TARGET_PDB = esp-idf/esp_http_server/libesp_http_server.pdb build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ /home/igor/esp/esp-idf/components/esp_http_server/src/httpd_parse.c || cmake_object_order_depends_target___idf_esp_http_server DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12056,8 +10707,6 @@ build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_par INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/igor/esp/esp-idf/components/esp_http_server/src/util -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/__idf_esp_http_server.pdb - TARGET_PDB = esp-idf/esp_http_server/libesp_http_server.pdb build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ /home/igor/esp/esp-idf/components/esp_http_server/src/httpd_sess.c || cmake_object_order_depends_target___idf_esp_http_server DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12066,8 +10715,6 @@ build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ses INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/igor/esp/esp-idf/components/esp_http_server/src/util -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/__idf_esp_http_server.pdb - TARGET_PDB = esp-idf/esp_http_server/libesp_http_server.pdb build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ /home/igor/esp/esp-idf/components/esp_http_server/src/httpd_txrx.c || cmake_object_order_depends_target___idf_esp_http_server DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12076,8 +10723,6 @@ build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txr INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/igor/esp/esp-idf/components/esp_http_server/src/util -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/__idf_esp_http_server.pdb - TARGET_PDB = esp-idf/esp_http_server/libesp_http_server.pdb build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ /home/igor/esp/esp-idf/components/esp_http_server/src/httpd_uri.c || cmake_object_order_depends_target___idf_esp_http_server DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12086,8 +10731,6 @@ build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/igor/esp/esp-idf/components/esp_http_server/src/util -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/__idf_esp_http_server.pdb - TARGET_PDB = esp-idf/esp_http_server/libesp_http_server.pdb build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ /home/igor/esp/esp-idf/components/esp_http_server/src/httpd_ws.c || cmake_object_order_depends_target___idf_esp_http_server DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12096,8 +10739,6 @@ build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/igor/esp/esp-idf/components/esp_http_server/src/util -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/__idf_esp_http_server.pdb - TARGET_PDB = esp-idf/esp_http_server/libesp_http_server.pdb build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ /home/igor/esp/esp-idf/components/esp_http_server/src/util/ctrl_sock.c || cmake_object_order_depends_target___idf_esp_http_server DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12106,8 +10747,6 @@ build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/igor/esp/esp-idf/components/esp_http_server/src/util -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_timer/include OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util - TARGET_COMPILE_PDB = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/__idf_esp_http_server.pdb - TARGET_PDB = esp-idf/esp_http_server/libesp_http_server.pdb # ============================================================================= @@ -12122,9 +10761,8 @@ build esp-idf/esp_http_server/libesp_http_server.a: C_STATIC_LIBRARY_LINKER____i OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/__idf_esp_http_server.pdb TARGET_FILE = esp-idf/esp_http_server/libesp_http_server.a - TARGET_PDB = esp-idf/esp_http_server/libesp_http_server.pdb + TARGET_PDB = esp_http_server.a.dbg ############################################# @@ -12211,8 +10849,6 @@ build esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_https_ota/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_http_client/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir OBJECT_FILE_DIR = esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/__idf_esp_https_ota.pdb - TARGET_PDB = esp-idf/esp_https_ota/libesp_https_ota.pdb # ============================================================================= @@ -12227,9 +10863,8 @@ build esp-idf/esp_https_ota/libesp_https_ota.a: C_STATIC_LIBRARY_LINKER____idf_e OBJECT_DIR = esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/__idf_esp_https_ota.pdb TARGET_FILE = esp-idf/esp_https_ota/libesp_https_ota.a - TARGET_PDB = esp-idf/esp_https_ota/libesp_https_ota.pdb + TARGET_PDB = esp_https_ota.a.dbg ############################################# @@ -12386,8 +11021,6 @@ build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_lcd/include -I/home/igor/esp/esp-idf/components/esp_lcd/interface -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/__idf_esp_lcd.pdb - TARGET_PDB = esp-idf/esp_lcd/libesp_lcd.pdb build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/igor/esp/esp-idf/components/esp_lcd/src/esp_lcd_panel_io.c || cmake_object_order_depends_target___idf_esp_lcd DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj.d @@ -12395,8 +11028,6 @@ build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_lcd/include -I/home/igor/esp/esp-idf/components/esp_lcd/interface -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/__idf_esp_lcd.pdb - TARGET_PDB = esp-idf/esp_lcd/libesp_lcd.pdb build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/igor/esp/esp-idf/components/esp_lcd/src/esp_lcd_panel_io_i2c.c || cmake_object_order_depends_target___idf_esp_lcd DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c.c.obj.d @@ -12404,8 +11035,6 @@ build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_lcd/include -I/home/igor/esp/esp-idf/components/esp_lcd/interface -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/__idf_esp_lcd.pdb - TARGET_PDB = esp-idf/esp_lcd/libesp_lcd.pdb build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/igor/esp/esp-idf/components/esp_lcd/src/esp_lcd_panel_io_spi.c || cmake_object_order_depends_target___idf_esp_lcd DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj.d @@ -12413,8 +11042,6 @@ build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_lcd/include -I/home/igor/esp/esp-idf/components/esp_lcd/interface -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/__idf_esp_lcd.pdb - TARGET_PDB = esp-idf/esp_lcd/libesp_lcd.pdb build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/igor/esp/esp-idf/components/esp_lcd/src/esp_lcd_panel_nt35510.c || cmake_object_order_depends_target___idf_esp_lcd DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj.d @@ -12422,8 +11049,6 @@ build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_lcd/include -I/home/igor/esp/esp-idf/components/esp_lcd/interface -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/__idf_esp_lcd.pdb - TARGET_PDB = esp-idf/esp_lcd/libesp_lcd.pdb build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/igor/esp/esp-idf/components/esp_lcd/src/esp_lcd_panel_ssd1306.c || cmake_object_order_depends_target___idf_esp_lcd DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj.d @@ -12431,8 +11056,6 @@ build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_lcd/include -I/home/igor/esp/esp-idf/components/esp_lcd/interface -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/__idf_esp_lcd.pdb - TARGET_PDB = esp-idf/esp_lcd/libesp_lcd.pdb build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/igor/esp/esp-idf/components/esp_lcd/src/esp_lcd_panel_st7789.c || cmake_object_order_depends_target___idf_esp_lcd DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj.d @@ -12440,8 +11063,6 @@ build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_lcd/include -I/home/igor/esp/esp-idf/components/esp_lcd/interface -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/__idf_esp_lcd.pdb - TARGET_PDB = esp-idf/esp_lcd/libesp_lcd.pdb build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/igor/esp/esp-idf/components/esp_lcd/src/esp_lcd_panel_ops.c || cmake_object_order_depends_target___idf_esp_lcd DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj.d @@ -12449,8 +11070,6 @@ build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_lcd/include -I/home/igor/esp/esp-idf/components/esp_lcd/interface -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/__idf_esp_lcd.pdb - TARGET_PDB = esp-idf/esp_lcd/libesp_lcd.pdb build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2s.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/igor/esp/esp-idf/components/esp_lcd/src/esp_lcd_panel_io_i2s.c || cmake_object_order_depends_target___idf_esp_lcd DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2s.c.obj.d @@ -12458,8 +11077,6 @@ build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2s.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_lcd/include -I/home/igor/esp/esp-idf/components/esp_lcd/interface -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/__idf_esp_lcd.pdb - TARGET_PDB = esp-idf/esp_lcd/libesp_lcd.pdb # ============================================================================= @@ -12474,9 +11091,8 @@ build esp-idf/esp_lcd/libesp_lcd.a: C_STATIC_LIBRARY_LINKER____idf_esp_lcd_ esp- OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/__idf_esp_lcd.pdb TARGET_FILE = esp-idf/esp_lcd/libesp_lcd.a - TARGET_PDB = esp-idf/esp_lcd/libesp_lcd.pdb + TARGET_PDB = esp_lcd.a.dbg ############################################# @@ -12563,8 +11179,6 @@ build esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/p INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir OBJECT_FILE_DIR = esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c - TARGET_COMPILE_PDB = esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/__idf_protobuf-c.pdb - TARGET_PDB = esp-idf/protobuf-c/libprotobuf-c.pdb # ============================================================================= @@ -12579,9 +11193,8 @@ build esp-idf/protobuf-c/libprotobuf-c.a: C_STATIC_LIBRARY_LINKER____idf_protobu OBJECT_DIR = esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/__idf_protobuf-c.pdb TARGET_FILE = esp-idf/protobuf-c/libprotobuf-c.a - TARGET_PDB = esp-idf/protobuf-c/libprotobuf-c.pdb + TARGET_PDB = protobuf-c.a.dbg ############################################# @@ -12669,8 +11282,6 @@ build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/protocomm/src/common -I/home/igor/esp/esp-idf/components/protocomm/src/crypto/srp6a/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/http_parser OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common - TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb - TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/igor/esp/esp-idf/components/protocomm/proto-c/constants.pb-c.c || cmake_object_order_depends_target___idf_protocomm DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12679,8 +11290,6 @@ build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/protocomm/src/common -I/home/igor/esp/esp-idf/components/protocomm/src/crypto/srp6a/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/http_parser OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c - TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb - TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/igor/esp/esp-idf/components/protocomm/proto-c/sec0.pb-c.c || cmake_object_order_depends_target___idf_protocomm DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12689,8 +11298,6 @@ build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/protocomm/src/common -I/home/igor/esp/esp-idf/components/protocomm/src/crypto/srp6a/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/http_parser OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c - TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb - TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/igor/esp/esp-idf/components/protocomm/proto-c/sec1.pb-c.c || cmake_object_order_depends_target___idf_protocomm DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12699,8 +11306,6 @@ build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/protocomm/src/common -I/home/igor/esp/esp-idf/components/protocomm/src/crypto/srp6a/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/http_parser OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c - TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb - TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/igor/esp/esp-idf/components/protocomm/proto-c/sec2.pb-c.c || cmake_object_order_depends_target___idf_protocomm DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12709,8 +11314,6 @@ build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/protocomm/src/common -I/home/igor/esp/esp-idf/components/protocomm/src/crypto/srp6a/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/http_parser OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c - TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb - TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/igor/esp/esp-idf/components/protocomm/proto-c/session.pb-c.c || cmake_object_order_depends_target___idf_protocomm DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12719,8 +11322,6 @@ build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/protocomm/src/common -I/home/igor/esp/esp-idf/components/protocomm/src/crypto/srp6a/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/http_parser OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c - TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb - TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/igor/esp/esp-idf/components/protocomm/src/transports/protocomm_console.c || cmake_object_order_depends_target___idf_protocomm DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12729,8 +11330,6 @@ build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/protocomm/src/common -I/home/igor/esp/esp-idf/components/protocomm/src/crypto/srp6a/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/http_parser OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports - TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb - TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/igor/esp/esp-idf/components/protocomm/src/transports/protocomm_httpd.c || cmake_object_order_depends_target___idf_protocomm DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12739,8 +11338,6 @@ build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/protocomm/src/common -I/home/igor/esp/esp-idf/components/protocomm/src/crypto/srp6a/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/http_parser OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports - TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb - TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/igor/esp/esp-idf/components/protocomm/src/security/security0.c || cmake_object_order_depends_target___idf_protocomm DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12749,8 +11346,6 @@ build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/protocomm/src/common -I/home/igor/esp/esp-idf/components/protocomm/src/crypto/srp6a/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/http_parser OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security - TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb - TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/igor/esp/esp-idf/components/protocomm/src/security/security1.c || cmake_object_order_depends_target___idf_protocomm DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12759,8 +11354,6 @@ build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/protocomm/src/common -I/home/igor/esp/esp-idf/components/protocomm/src/crypto/srp6a/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/http_parser OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security - TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb - TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb # ============================================================================= @@ -12775,9 +11368,8 @@ build esp-idf/protocomm/libprotocomm.a: C_STATIC_LIBRARY_LINKER____idf_protocomm OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb TARGET_FILE = esp-idf/protocomm/libprotocomm.a - TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb + TARGET_PDB = protocomm.a.dbg ############################################# @@ -12864,8 +11456,6 @@ build esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj: C_COMPILER____idf_mdns_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mdns/include -I/home/igor/esp/esp-idf/components/mdns/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/mdns/CMakeFiles/__idf_mdns.dir OBJECT_FILE_DIR = esp-idf/mdns/CMakeFiles/__idf_mdns.dir - TARGET_COMPILE_PDB = esp-idf/mdns/CMakeFiles/__idf_mdns.dir/__idf_mdns.pdb - TARGET_PDB = esp-idf/mdns/libmdns.pdb build esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking_lwip.c.obj: C_COMPILER____idf_mdns_unscanned_ /home/igor/esp/esp-idf/components/mdns/mdns_networking_lwip.c || cmake_object_order_depends_target___idf_mdns DEP_FILE = esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking_lwip.c.obj.d @@ -12873,8 +11463,6 @@ build esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking_lwip.c.obj: C_COMPI INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mdns/include -I/home/igor/esp/esp-idf/components/mdns/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/mdns/CMakeFiles/__idf_mdns.dir OBJECT_FILE_DIR = esp-idf/mdns/CMakeFiles/__idf_mdns.dir - TARGET_COMPILE_PDB = esp-idf/mdns/CMakeFiles/__idf_mdns.dir/__idf_mdns.pdb - TARGET_PDB = esp-idf/mdns/libmdns.pdb build esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj: C_COMPILER____idf_mdns_unscanned_ /home/igor/esp/esp-idf/components/mdns/mdns_console.c || cmake_object_order_depends_target___idf_mdns DEP_FILE = esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj.d @@ -12882,8 +11470,6 @@ build esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj: C_COMPILER____i INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mdns/include -I/home/igor/esp/esp-idf/components/mdns/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_eth/include OBJECT_DIR = esp-idf/mdns/CMakeFiles/__idf_mdns.dir OBJECT_FILE_DIR = esp-idf/mdns/CMakeFiles/__idf_mdns.dir - TARGET_COMPILE_PDB = esp-idf/mdns/CMakeFiles/__idf_mdns.dir/__idf_mdns.pdb - TARGET_PDB = esp-idf/mdns/libmdns.pdb # ============================================================================= @@ -12898,9 +11484,8 @@ build esp-idf/mdns/libmdns.a: C_STATIC_LIBRARY_LINKER____idf_mdns_ esp-idf/mdns/ OBJECT_DIR = esp-idf/mdns/CMakeFiles/__idf_mdns.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/mdns/CMakeFiles/__idf_mdns.dir/__idf_mdns.pdb TARGET_FILE = esp-idf/mdns/libmdns.a - TARGET_PDB = esp-idf/mdns/libmdns.pdb + TARGET_PDB = mdns.a.dbg ############################################# @@ -12988,8 +11573,6 @@ build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_c INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_local_ctrl/include -I/home/igor/esp/esp-idf/components/esp_local_ctrl/proto-c -I/home/igor/esp/esp-idf/components/esp_local_ctrl/src -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/mdns/include -I/home/igor/esp/esp-idf/components/console OBJECT_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir OBJECT_FILE_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/__idf_esp_local_ctrl.pdb - TARGET_PDB = esp-idf/esp_local_ctrl/libesp_local_ctrl.pdb build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj: C_COMPILER____idf_esp_local_ctrl_unscanned_ /home/igor/esp/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_handler.c || cmake_object_order_depends_target___idf_esp_local_ctrl DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -12998,8 +11581,6 @@ build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_c INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_local_ctrl/include -I/home/igor/esp/esp-idf/components/esp_local_ctrl/proto-c -I/home/igor/esp/esp-idf/components/esp_local_ctrl/src -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/mdns/include -I/home/igor/esp/esp-idf/components/console OBJECT_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir OBJECT_FILE_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/__idf_esp_local_ctrl.pdb - TARGET_PDB = esp-idf/esp_local_ctrl/libesp_local_ctrl.pdb build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj: C_COMPILER____idf_esp_local_ctrl_unscanned_ /home/igor/esp/esp-idf/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c || cmake_object_order_depends_target___idf_esp_local_ctrl DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -13008,8 +11589,6 @@ build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_loc INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_local_ctrl/include -I/home/igor/esp/esp-idf/components/esp_local_ctrl/proto-c -I/home/igor/esp/esp-idf/components/esp_local_ctrl/src -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/mdns/include -I/home/igor/esp/esp-idf/components/console OBJECT_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir OBJECT_FILE_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c - TARGET_COMPILE_PDB = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/__idf_esp_local_ctrl.pdb - TARGET_PDB = esp-idf/esp_local_ctrl/libesp_local_ctrl.pdb # ============================================================================= @@ -13024,9 +11603,8 @@ build esp-idf/esp_local_ctrl/libesp_local_ctrl.a: C_STATIC_LIBRARY_LINKER____idf OBJECT_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/__idf_esp_local_ctrl.pdb TARGET_FILE = esp-idf/esp_local_ctrl/libesp_local_ctrl.a - TARGET_PDB = esp-idf/esp_local_ctrl/libesp_local_ctrl.pdb + TARGET_PDB = esp_local_ctrl.a.dbg ############################################# @@ -13183,8 +11761,6 @@ build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj: C_COMPILER____id INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - TARGET_COMPILE_PDB = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/__idf_sdmmc.pdb - TARGET_PDB = esp-idf/sdmmc/libsdmmc.pdb build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj: C_COMPILER____idf_sdmmc_unscanned_ /home/igor/esp/esp-idf/components/sdmmc/sdmmc_common.c || cmake_object_order_depends_target___idf_sdmmc DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj.d @@ -13192,8 +11768,6 @@ build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - TARGET_COMPILE_PDB = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/__idf_sdmmc.pdb - TARGET_PDB = esp-idf/sdmmc/libsdmmc.pdb build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj: C_COMPILER____idf_sdmmc_unscanned_ /home/igor/esp/esp-idf/components/sdmmc/sdmmc_init.c || cmake_object_order_depends_target___idf_sdmmc DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj.d @@ -13201,8 +11775,6 @@ build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj: C_COMPILER____i INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - TARGET_COMPILE_PDB = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/__idf_sdmmc.pdb - TARGET_PDB = esp-idf/sdmmc/libsdmmc.pdb build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj: C_COMPILER____idf_sdmmc_unscanned_ /home/igor/esp/esp-idf/components/sdmmc/sdmmc_io.c || cmake_object_order_depends_target___idf_sdmmc DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj.d @@ -13210,8 +11782,6 @@ build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj: C_COMPILER____idf INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - TARGET_COMPILE_PDB = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/__idf_sdmmc.pdb - TARGET_PDB = esp-idf/sdmmc/libsdmmc.pdb build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj: C_COMPILER____idf_sdmmc_unscanned_ /home/igor/esp/esp-idf/components/sdmmc/sdmmc_mmc.c || cmake_object_order_depends_target___idf_sdmmc DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj.d @@ -13219,8 +11789,6 @@ build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj: C_COMPILER____id INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - TARGET_COMPILE_PDB = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/__idf_sdmmc.pdb - TARGET_PDB = esp-idf/sdmmc/libsdmmc.pdb build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj: C_COMPILER____idf_sdmmc_unscanned_ /home/igor/esp/esp-idf/components/sdmmc/sdmmc_sd.c || cmake_object_order_depends_target___idf_sdmmc DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj.d @@ -13228,8 +11796,6 @@ build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj: C_COMPILER____idf INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - TARGET_COMPILE_PDB = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/__idf_sdmmc.pdb - TARGET_PDB = esp-idf/sdmmc/libsdmmc.pdb # ============================================================================= @@ -13244,9 +11810,8 @@ build esp-idf/sdmmc/libsdmmc.a: C_STATIC_LIBRARY_LINKER____idf_sdmmc_ esp-idf/sd OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/__idf_sdmmc.pdb TARGET_FILE = esp-idf/sdmmc/libsdmmc.a - TARGET_PDB = esp-idf/sdmmc/libsdmmc.pdb + TARGET_PDB = sdmmc.a.dbg ############################################# @@ -13333,8 +11898,6 @@ build esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/e INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_serial_slave_link/include -I/home/igor/esp/esp-idf/components/esp_serial_slave_link -I/home/igor/esp/esp-idf/components/esp_serial_slave_link/include/esp_serial_slave_link -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir OBJECT_FILE_DIR = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir - TARGET_COMPILE_PDB = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/__idf_esp_serial_slave_link.pdb - TARGET_PDB = esp-idf/esp_serial_slave_link/libesp_serial_slave_link.pdb build esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj: C_COMPILER____idf_esp_serial_slave_link_unscanned_ /home/igor/esp/esp-idf/components/esp_serial_slave_link/essl_sdio.c || cmake_object_order_depends_target___idf_esp_serial_slave_link DEP_FILE = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj.d @@ -13342,8 +11905,6 @@ build esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/e INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_serial_slave_link/include -I/home/igor/esp/esp-idf/components/esp_serial_slave_link -I/home/igor/esp/esp-idf/components/esp_serial_slave_link/include/esp_serial_slave_link -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir OBJECT_FILE_DIR = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir - TARGET_COMPILE_PDB = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/__idf_esp_serial_slave_link.pdb - TARGET_PDB = esp-idf/esp_serial_slave_link/libesp_serial_slave_link.pdb build esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_spi.c.obj: C_COMPILER____idf_esp_serial_slave_link_unscanned_ /home/igor/esp/esp-idf/components/esp_serial_slave_link/essl_spi.c || cmake_object_order_depends_target___idf_esp_serial_slave_link DEP_FILE = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_spi.c.obj.d @@ -13351,8 +11912,6 @@ build esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/e INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/esp_serial_slave_link/include -I/home/igor/esp/esp-idf/components/esp_serial_slave_link -I/home/igor/esp/esp-idf/components/esp_serial_slave_link/include/esp_serial_slave_link -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir OBJECT_FILE_DIR = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir - TARGET_COMPILE_PDB = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/__idf_esp_serial_slave_link.pdb - TARGET_PDB = esp-idf/esp_serial_slave_link/libesp_serial_slave_link.pdb # ============================================================================= @@ -13367,9 +11926,8 @@ build esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a: C_STATIC_LIBRARY OBJECT_DIR = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/__idf_esp_serial_slave_link.pdb TARGET_FILE = esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a - TARGET_PDB = esp-idf/esp_serial_slave_link/libesp_serial_slave_link.pdb + TARGET_PDB = esp_serial_slave_link.a.dbg ############################################# @@ -13457,8 +12015,6 @@ build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/espcoredump/include -I/home/igor/esp/esp-idf/components/espcoredump/include/port/xtensa -I/home/igor/esp/esp-idf/components/espcoredump/include_core_dump -I/home/igor/esp/esp-idf/components/espcoredump/include_core_dump/port/xtensa -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src - TARGET_COMPILE_PDB = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/__idf_espcoredump.pdb - TARGET_PDB = esp-idf/espcoredump/libespcoredump.pdb build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_checksum.c.obj: C_COMPILER____idf_espcoredump_unscanned_ /home/igor/esp/esp-idf/components/espcoredump/src/core_dump_checksum.c || cmake_object_order_depends_target___idf_espcoredump DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -13467,8 +12023,6 @@ build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_checksu INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/espcoredump/include -I/home/igor/esp/esp-idf/components/espcoredump/include/port/xtensa -I/home/igor/esp/esp-idf/components/espcoredump/include_core_dump -I/home/igor/esp/esp-idf/components/espcoredump/include_core_dump/port/xtensa -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src - TARGET_COMPILE_PDB = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/__idf_espcoredump.pdb - TARGET_PDB = esp-idf/espcoredump/libespcoredump.pdb build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj: C_COMPILER____idf_espcoredump_unscanned_ /home/igor/esp/esp-idf/components/espcoredump/src/core_dump_flash.c || cmake_object_order_depends_target___idf_espcoredump DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -13477,8 +12031,6 @@ build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/espcoredump/include -I/home/igor/esp/esp-idf/components/espcoredump/include/port/xtensa -I/home/igor/esp/esp-idf/components/espcoredump/include_core_dump -I/home/igor/esp/esp-idf/components/espcoredump/include_core_dump/port/xtensa -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src - TARGET_COMPILE_PDB = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/__idf_espcoredump.pdb - TARGET_PDB = esp-idf/espcoredump/libespcoredump.pdb build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj: C_COMPILER____idf_espcoredump_unscanned_ /home/igor/esp/esp-idf/components/espcoredump/src/core_dump_uart.c || cmake_object_order_depends_target___idf_espcoredump DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -13487,8 +12039,6 @@ build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/espcoredump/include -I/home/igor/esp/esp-idf/components/espcoredump/include/port/xtensa -I/home/igor/esp/esp-idf/components/espcoredump/include_core_dump -I/home/igor/esp/esp-idf/components/espcoredump/include_core_dump/port/xtensa -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src - TARGET_COMPILE_PDB = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/__idf_espcoredump.pdb - TARGET_PDB = esp-idf/espcoredump/libespcoredump.pdb build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj: C_COMPILER____idf_espcoredump_unscanned_ /home/igor/esp/esp-idf/components/espcoredump/src/core_dump_elf.c || cmake_object_order_depends_target___idf_espcoredump DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -13497,8 +12047,6 @@ build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/espcoredump/include -I/home/igor/esp/esp-idf/components/espcoredump/include/port/xtensa -I/home/igor/esp/esp-idf/components/espcoredump/include_core_dump -I/home/igor/esp/esp-idf/components/espcoredump/include_core_dump/port/xtensa -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src - TARGET_COMPILE_PDB = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/__idf_espcoredump.pdb - TARGET_PDB = esp-idf/espcoredump/libespcoredump.pdb build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj: C_COMPILER____idf_espcoredump_unscanned_ /home/igor/esp/esp-idf/components/espcoredump/src/core_dump_binary.c || cmake_object_order_depends_target___idf_espcoredump DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -13507,8 +12055,6 @@ build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/espcoredump/include -I/home/igor/esp/esp-idf/components/espcoredump/include/port/xtensa -I/home/igor/esp/esp-idf/components/espcoredump/include_core_dump -I/home/igor/esp/esp-idf/components/espcoredump/include_core_dump/port/xtensa -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src - TARGET_COMPILE_PDB = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/__idf_espcoredump.pdb - TARGET_PDB = esp-idf/espcoredump/libespcoredump.pdb build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj: C_COMPILER____idf_espcoredump_unscanned_ /home/igor/esp/esp-idf/components/espcoredump/src/port/xtensa/core_dump_port.c || cmake_object_order_depends_target___idf_espcoredump DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -13517,8 +12063,6 @@ build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/espcoredump/include -I/home/igor/esp/esp-idf/components/espcoredump/include/port/xtensa -I/home/igor/esp/esp-idf/components/espcoredump/include_core_dump -I/home/igor/esp/esp-idf/components/espcoredump/include_core_dump/port/xtensa -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa - TARGET_COMPILE_PDB = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/__idf_espcoredump.pdb - TARGET_PDB = esp-idf/espcoredump/libespcoredump.pdb # ============================================================================= @@ -13533,9 +12077,8 @@ build esp-idf/espcoredump/libespcoredump.a: C_STATIC_LIBRARY_LINKER____idf_espco OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/__idf_espcoredump.pdb TARGET_FILE = esp-idf/espcoredump/libespcoredump.a - TARGET_PDB = esp-idf/espcoredump/libespcoredump.pdb + TARGET_PDB = espcoredump.a.dbg ############################################# @@ -13622,8 +12165,6 @@ build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/wear_levelling/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb - TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ /home/igor/esp/esp-idf/components/wear_levelling/SPI_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj.d @@ -13631,8 +12172,6 @@ build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/wear_levelling/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb - TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ /home/igor/esp/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp || cmake_object_order_depends_target___idf_wear_levelling DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj.d @@ -13640,8 +12179,6 @@ build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/wear_levelling/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb - TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ /home/igor/esp/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp || cmake_object_order_depends_target___idf_wear_levelling DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj.d @@ -13649,8 +12186,6 @@ build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/wear_levelling/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb - TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ /home/igor/esp/esp-idf/components/wear_levelling/WL_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj.d @@ -13658,8 +12193,6 @@ build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/wear_levelling/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb - TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ /home/igor/esp/esp-idf/components/wear_levelling/crc32.cpp || cmake_object_order_depends_target___idf_wear_levelling DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj.d @@ -13667,8 +12200,6 @@ build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/wear_levelling/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb - TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ /home/igor/esp/esp-idf/components/wear_levelling/wear_levelling.cpp || cmake_object_order_depends_target___idf_wear_levelling DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj.d @@ -13676,8 +12207,6 @@ build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling. INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/wear_levelling/private_include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb - TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb # ============================================================================= @@ -13692,9 +12221,8 @@ build esp-idf/wear_levelling/libwear_levelling.a: C_STATIC_LIBRARY_LINKER____idf OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb TARGET_FILE = esp-idf/wear_levelling/libwear_levelling.a - TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb + TARGET_PDB = wear_levelling.a.dbg ############################################# @@ -13781,8 +12309,6 @@ build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj: C_COMPILER__ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/fatfs/diskio -I/home/igor/esp/esp-idf/components/fatfs/vfs -I/home/igor/esp/esp-idf/components/fatfs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio - TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb - TARGET_PDB = esp-idf/fatfs/libfatfs.pdb build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/igor/esp/esp-idf/components/fatfs/diskio/diskio_rawflash.c || cmake_object_order_depends_target___idf_fatfs DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj.d @@ -13790,8 +12316,6 @@ build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/fatfs/diskio -I/home/igor/esp/esp-idf/components/fatfs/vfs -I/home/igor/esp/esp-idf/components/fatfs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio - TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb - TARGET_PDB = esp-idf/fatfs/libfatfs.pdb build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/igor/esp/esp-idf/components/fatfs/diskio/diskio_sdmmc.c || cmake_object_order_depends_target___idf_fatfs DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj.d @@ -13799,8 +12323,6 @@ build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/fatfs/diskio -I/home/igor/esp/esp-idf/components/fatfs/vfs -I/home/igor/esp/esp-idf/components/fatfs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio - TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb - TARGET_PDB = esp-idf/fatfs/libfatfs.pdb build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/igor/esp/esp-idf/components/fatfs/diskio/diskio_wl.c || cmake_object_order_depends_target___idf_fatfs DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj.d @@ -13808,8 +12330,6 @@ build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj: C_COMPILE INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/fatfs/diskio -I/home/igor/esp/esp-idf/components/fatfs/vfs -I/home/igor/esp/esp-idf/components/fatfs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio - TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb - TARGET_PDB = esp-idf/fatfs/libfatfs.pdb build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/igor/esp/esp-idf/components/fatfs/src/ff.c || cmake_object_order_depends_target___idf_fatfs DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj.d @@ -13817,8 +12337,6 @@ build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj: C_COMPILER____idf_f INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/fatfs/diskio -I/home/igor/esp/esp-idf/components/fatfs/vfs -I/home/igor/esp/esp-idf/components/fatfs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src - TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb - TARGET_PDB = esp-idf/fatfs/libfatfs.pdb build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/igor/esp/esp-idf/components/fatfs/port/freertos/ffsystem.c || cmake_object_order_depends_target___idf_fatfs DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj.d @@ -13826,8 +12344,6 @@ build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/fatfs/diskio -I/home/igor/esp/esp-idf/components/fatfs/vfs -I/home/igor/esp/esp-idf/components/fatfs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos - TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb - TARGET_PDB = esp-idf/fatfs/libfatfs.pdb build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/igor/esp/esp-idf/components/fatfs/src/ffunicode.c || cmake_object_order_depends_target___idf_fatfs DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj.d @@ -13835,8 +12351,6 @@ build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj: C_COMPILER__ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/fatfs/diskio -I/home/igor/esp/esp-idf/components/fatfs/vfs -I/home/igor/esp/esp-idf/components/fatfs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src - TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb - TARGET_PDB = esp-idf/fatfs/libfatfs.pdb build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/igor/esp/esp-idf/components/fatfs/vfs/vfs_fat.c || cmake_object_order_depends_target___idf_fatfs DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj.d @@ -13844,8 +12358,6 @@ build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj: C_COMPILER____ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/fatfs/diskio -I/home/igor/esp/esp-idf/components/fatfs/vfs -I/home/igor/esp/esp-idf/components/fatfs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs - TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb - TARGET_PDB = esp-idf/fatfs/libfatfs.pdb build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/igor/esp/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c || cmake_object_order_depends_target___idf_fatfs DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj.d @@ -13853,8 +12365,6 @@ build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/fatfs/diskio -I/home/igor/esp/esp-idf/components/fatfs/vfs -I/home/igor/esp/esp-idf/components/fatfs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs - TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb - TARGET_PDB = esp-idf/fatfs/libfatfs.pdb build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/igor/esp/esp-idf/components/fatfs/vfs/vfs_fat_spiflash.c || cmake_object_order_depends_target___idf_fatfs DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj.d @@ -13862,8 +12372,6 @@ build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj: C_COM INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/fatfs/diskio -I/home/igor/esp/esp-idf/components/fatfs/vfs -I/home/igor/esp/esp-idf/components/fatfs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs - TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb - TARGET_PDB = esp-idf/fatfs/libfatfs.pdb # ============================================================================= @@ -13878,9 +12386,8 @@ build esp-idf/fatfs/libfatfs.a: C_STATIC_LIBRARY_LINKER____idf_fatfs_ esp-idf/fa OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb TARGET_FILE = esp-idf/fatfs/libfatfs.a - TARGET_PDB = esp-idf/fatfs/libfatfs.pdb + TARGET_PDB = fatfs.a.dbg ############################################# @@ -14107,8 +12614,6 @@ build esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj: C_COMPILER____id INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/json/cJSON -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/json/CMakeFiles/__idf_json.dir OBJECT_FILE_DIR = esp-idf/json/CMakeFiles/__idf_json.dir/cJSON - TARGET_COMPILE_PDB = esp-idf/json/CMakeFiles/__idf_json.dir/__idf_json.pdb - TARGET_PDB = esp-idf/json/libjson.pdb build esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj: C_COMPILER____idf_json_unscanned_ /home/igor/esp/esp-idf/components/json/cJSON/cJSON_Utils.c || cmake_object_order_depends_target___idf_json DEP_FILE = esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj.d @@ -14116,8 +12621,6 @@ build esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj: C_COMPILER INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/json/cJSON -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/json/CMakeFiles/__idf_json.dir OBJECT_FILE_DIR = esp-idf/json/CMakeFiles/__idf_json.dir/cJSON - TARGET_COMPILE_PDB = esp-idf/json/CMakeFiles/__idf_json.dir/__idf_json.pdb - TARGET_PDB = esp-idf/json/libjson.pdb # ============================================================================= @@ -14132,9 +12635,8 @@ build esp-idf/json/libjson.a: C_STATIC_LIBRARY_LINKER____idf_json_ esp-idf/json/ OBJECT_DIR = esp-idf/json/CMakeFiles/__idf_json.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/json/CMakeFiles/__idf_json.dir/__idf_json.pdb TARGET_FILE = esp-idf/json/libjson.a - TARGET_PDB = esp-idf/json/libjson.pdb + TARGET_PDB = json.a.dbg ############################################# @@ -14222,8 +12724,6 @@ build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj: C_COMPI INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/igor/esp/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/tcp_transport/include -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir OBJECT_FILE_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt - TARGET_COMPILE_PDB = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/__idf_mqtt.pdb - TARGET_PDB = esp-idf/mqtt/libmqtt.pdb build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj: C_COMPILER____idf_mqtt_unscanned_ /home/igor/esp/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c || cmake_object_order_depends_target___idf_mqtt DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -14232,8 +12732,6 @@ build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj: C_COMP INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/igor/esp/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/tcp_transport/include -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir OBJECT_FILE_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib - TARGET_COMPILE_PDB = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/__idf_mqtt.pdb - TARGET_PDB = esp-idf/mqtt/libmqtt.pdb build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj: C_COMPILER____idf_mqtt_unscanned_ /home/igor/esp/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c || cmake_object_order_depends_target___idf_mqtt DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -14242,8 +12740,6 @@ build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/igor/esp/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/tcp_transport/include -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir OBJECT_FILE_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib - TARGET_COMPILE_PDB = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/__idf_mqtt.pdb - TARGET_PDB = esp-idf/mqtt/libmqtt.pdb build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj: C_COMPILER____idf_mqtt_unscanned_ /home/igor/esp/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c || cmake_object_order_depends_target___idf_mqtt DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -14252,8 +12748,6 @@ build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.o INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/igor/esp/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/tcp_transport/include -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include OBJECT_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir OBJECT_FILE_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib - TARGET_COMPILE_PDB = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/__idf_mqtt.pdb - TARGET_PDB = esp-idf/mqtt/libmqtt.pdb # ============================================================================= @@ -14268,9 +12762,8 @@ build esp-idf/mqtt/libmqtt.a: C_STATIC_LIBRARY_LINKER____idf_mqtt_ esp-idf/mqtt/ OBJECT_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/__idf_mqtt.pdb TARGET_FILE = esp-idf/mqtt/libmqtt.a - TARGET_PDB = esp-idf/mqtt/libmqtt.pdb + TARGET_PDB = mqtt.a.dbg ############################################# @@ -14427,8 +12920,6 @@ build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/perfmon/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir OBJECT_FILE_DIR = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir - TARGET_COMPILE_PDB = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/__idf_perfmon.pdb - TARGET_PDB = esp-idf/perfmon/libperfmon.pdb build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj: C_COMPILER____idf_perfmon_unscanned_ /home/igor/esp/esp-idf/components/perfmon/xtensa_perfmon_apis.c || cmake_object_order_depends_target___idf_perfmon DEP_FILE = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj.d @@ -14436,8 +12927,6 @@ build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj: C_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/perfmon/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir OBJECT_FILE_DIR = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir - TARGET_COMPILE_PDB = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/__idf_perfmon.pdb - TARGET_PDB = esp-idf/perfmon/libperfmon.pdb build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj: C_COMPILER____idf_perfmon_unscanned_ /home/igor/esp/esp-idf/components/perfmon/xtensa_perfmon_masks.c || cmake_object_order_depends_target___idf_perfmon DEP_FILE = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj.d @@ -14445,8 +12934,6 @@ build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj: C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/perfmon/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir OBJECT_FILE_DIR = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir - TARGET_COMPILE_PDB = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/__idf_perfmon.pdb - TARGET_PDB = esp-idf/perfmon/libperfmon.pdb # ============================================================================= @@ -14461,9 +12948,8 @@ build esp-idf/perfmon/libperfmon.a: C_STATIC_LIBRARY_LINKER____idf_perfmon_ esp- OBJECT_DIR = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/__idf_perfmon.pdb TARGET_FILE = esp-idf/perfmon/libperfmon.a - TARGET_PDB = esp-idf/perfmon/libperfmon.pdb + TARGET_PDB = perfmon.a.dbg ############################################# @@ -14550,8 +13036,6 @@ build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spiffs/include -I/home/igor/esp/esp-idf/components/spiffs -I/home/igor/esp/esp-idf/components/spiffs/spiffs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir - TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb - TARGET_PDB = esp-idf/spiffs/libspiffs.pdb build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj: C_COMPILER____idf_spiffs_unscanned_ /home/igor/esp/esp-idf/components/spiffs/spiffs_api.c || cmake_object_order_depends_target___idf_spiffs DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj.d @@ -14559,8 +13043,6 @@ build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj: C_COMPILER___ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spiffs/include -I/home/igor/esp/esp-idf/components/spiffs -I/home/igor/esp/esp-idf/components/spiffs/spiffs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir - TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb - TARGET_PDB = esp-idf/spiffs/libspiffs.pdb build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj: C_COMPILER____idf_spiffs_unscanned_ /home/igor/esp/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c || cmake_object_order_depends_target___idf_spiffs DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj.d @@ -14568,8 +13050,6 @@ build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spiffs/include -I/home/igor/esp/esp-idf/components/spiffs -I/home/igor/esp/esp-idf/components/spiffs/spiffs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src - TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb - TARGET_PDB = esp-idf/spiffs/libspiffs.pdb build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj: C_COMPILER____idf_spiffs_unscanned_ /home/igor/esp/esp-idf/components/spiffs/spiffs/src/spiffs_check.c || cmake_object_order_depends_target___idf_spiffs DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj.d @@ -14577,8 +13057,6 @@ build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj: INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spiffs/include -I/home/igor/esp/esp-idf/components/spiffs -I/home/igor/esp/esp-idf/components/spiffs/spiffs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src - TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb - TARGET_PDB = esp-idf/spiffs/libspiffs.pdb build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj: C_COMPILER____idf_spiffs_unscanned_ /home/igor/esp/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c || cmake_object_order_depends_target___idf_spiffs DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj.d @@ -14586,8 +13064,6 @@ build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj: C_C INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spiffs/include -I/home/igor/esp/esp-idf/components/spiffs -I/home/igor/esp/esp-idf/components/spiffs/spiffs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src - TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb - TARGET_PDB = esp-idf/spiffs/libspiffs.pdb build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj: C_COMPILER____idf_spiffs_unscanned_ /home/igor/esp/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c || cmake_object_order_depends_target___idf_spiffs DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj.d @@ -14595,8 +13071,6 @@ build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.ob INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spiffs/include -I/home/igor/esp/esp-idf/components/spiffs -I/home/igor/esp/esp-idf/components/spiffs/spiffs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src - TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb - TARGET_PDB = esp-idf/spiffs/libspiffs.pdb build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj: C_COMPILER____idf_spiffs_unscanned_ /home/igor/esp/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c || cmake_object_order_depends_target___idf_spiffs DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj.d @@ -14604,8 +13078,6 @@ build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/spiffs/include -I/home/igor/esp/esp-idf/components/spiffs -I/home/igor/esp/esp-idf/components/spiffs/spiffs/src -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src - TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb - TARGET_PDB = esp-idf/spiffs/libspiffs.pdb # ============================================================================= @@ -14620,9 +13092,8 @@ build esp-idf/spiffs/libspiffs.a: C_STATIC_LIBRARY_LINKER____idf_spiffs_ esp-idf OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb TARGET_FILE = esp-idf/spiffs/libspiffs.a - TARGET_PDB = esp-idf/spiffs/libspiffs.pdb + TARGET_PDB = spiffs.a.dbg ############################################# @@ -14849,8 +13320,6 @@ build esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_common.c.obj: C_COMPIL INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/ulp/ulp_common/include -I/home/igor/esp/esp-idf/components/ulp/ulp_common/include/esp32 -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include OBJECT_DIR = esp-idf/ulp/CMakeFiles/__idf_ulp.dir OBJECT_FILE_DIR = esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common - TARGET_COMPILE_PDB = esp-idf/ulp/CMakeFiles/__idf_ulp.dir/__idf_ulp.pdb - TARGET_PDB = esp-idf/ulp/libulp.pdb # ============================================================================= @@ -14865,9 +13334,8 @@ build esp-idf/ulp/libulp.a: C_STATIC_LIBRARY_LINKER____idf_ulp_ esp-idf/ulp/CMak OBJECT_DIR = esp-idf/ulp/CMakeFiles/__idf_ulp.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/ulp/CMakeFiles/__idf_ulp.dir/__idf_ulp.pdb TARGET_FILE = esp-idf/ulp/libulp.a - TARGET_PDB = esp-idf/ulp/libulp.pdb + TARGET_PDB = ulp.a.dbg ############################################# @@ -14955,8 +13423,6 @@ build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wifi_provisioning/include -I/home/igor/esp/esp-idf/components/wifi_provisioning/src -I/home/igor/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/json/cJSON OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src - TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb - TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/igor/esp/esp-idf/components/wifi_provisioning/src/wifi_scan.c || cmake_object_order_depends_target___idf_wifi_provisioning DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -14965,8 +13431,6 @@ build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wifi_provisioning/include -I/home/igor/esp/esp-idf/components/wifi_provisioning/src -I/home/igor/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/json/cJSON OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src - TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb - TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/igor/esp/esp-idf/components/wifi_provisioning/src/manager.c || cmake_object_order_depends_target___idf_wifi_provisioning DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -14975,8 +13439,6 @@ build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manag INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wifi_provisioning/include -I/home/igor/esp/esp-idf/components/wifi_provisioning/src -I/home/igor/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/json/cJSON OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src - TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb - TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/igor/esp/esp-idf/components/wifi_provisioning/src/handlers.c || cmake_object_order_depends_target___idf_wifi_provisioning DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -14985,8 +13447,6 @@ build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handl INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wifi_provisioning/include -I/home/igor/esp/esp-idf/components/wifi_provisioning/src -I/home/igor/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/json/cJSON OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src - TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb - TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/igor/esp/esp-idf/components/wifi_provisioning/src/scheme_console.c || cmake_object_order_depends_target___idf_wifi_provisioning DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -14995,8 +13455,6 @@ build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/schem INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wifi_provisioning/include -I/home/igor/esp/esp-idf/components/wifi_provisioning/src -I/home/igor/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/json/cJSON OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src - TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb - TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/igor/esp/esp-idf/components/wifi_provisioning/proto-c/wifi_config.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -15005,8 +13463,6 @@ build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/w INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wifi_provisioning/include -I/home/igor/esp/esp-idf/components/wifi_provisioning/src -I/home/igor/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/json/cJSON OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c - TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb - TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/igor/esp/esp-idf/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -15015,8 +13471,6 @@ build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/w INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wifi_provisioning/include -I/home/igor/esp/esp-idf/components/wifi_provisioning/src -I/home/igor/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/json/cJSON OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c - TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb - TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/igor/esp/esp-idf/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -15025,8 +13479,6 @@ build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/w INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wifi_provisioning/include -I/home/igor/esp/esp-idf/components/wifi_provisioning/src -I/home/igor/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/json/cJSON OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c - TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb - TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/igor/esp/esp-idf/components/wifi_provisioning/src/scheme_softap.c || cmake_object_order_depends_target___idf_wifi_provisioning DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" @@ -15035,8 +13487,6 @@ build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/schem INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/wifi_provisioning/include -I/home/igor/esp/esp-idf/components/wifi_provisioning/src -I/home/igor/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/igor/esp/esp-idf/components/protocomm/proto-c -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/json/cJSON OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src - TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb - TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb # ============================================================================= @@ -15051,9 +13501,8 @@ build esp-idf/wifi_provisioning/libwifi_provisioning.a: C_STATIC_LIBRARY_LINKER_ OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb TARGET_FILE = esp-idf/wifi_provisioning/libwifi_provisioning.a - TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb + TARGET_PDB = wifi_provisioning.a.dbg ############################################# @@ -15141,8 +13590,6 @@ build esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj: C_COMPILER____idf_main_ INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/experiment-ci-cd/main -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/mbedtls/port/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/igor/esp/esp-idf/components/mbedtls/mbedtls/library -I/home/igor/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/pthread/include -I/home/igor/esp/esp-idf/components/esp_timer/include -I/home/igor/esp/esp-idf/components/app_trace/include -I/home/igor/esp/esp-idf/components/esp_eth/include -I/home/igor/esp/esp-idf/components/nvs_flash/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/port/include -I/home/igor/esp/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/igor/esp/esp-idf/components/asio/asio/asio/include -I/home/igor/esp/esp-idf/components/asio/port/include -I/home/igor/esp/esp-idf/components/unity/include -I/home/igor/esp/esp-idf/components/unity/unity/src -I/home/igor/esp/esp-idf/components/cmock/CMock/src -I/home/igor/esp/esp-idf/components/console -I/home/igor/esp/esp-idf/components/http_parser -I/home/igor/esp/esp-idf/components/esp-tls -I/home/igor/esp/esp-idf/components/esp-tls/esp-tls-crypto -I/home/igor/esp/esp-idf/components/esp_adc_cal/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/include -I/home/igor/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/igor/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/igor/esp/esp-idf/components/esp_hid/include -I/home/igor/esp/esp-idf/components/tcp_transport/include -I/home/igor/esp/esp-idf/components/esp_http_client/include -I/home/igor/esp/esp-idf/components/esp_http_server/include -I/home/igor/esp/esp-idf/components/esp_https_ota/include -I/home/igor/esp/esp-idf/components/esp_lcd/include -I/home/igor/esp/esp-idf/components/esp_lcd/interface -I/home/igor/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/igor/esp/esp-idf/components/protocomm/include/common -I/home/igor/esp/esp-idf/components/protocomm/include/security -I/home/igor/esp/esp-idf/components/protocomm/include/transports -I/home/igor/esp/esp-idf/components/mdns/include -I/home/igor/esp/esp-idf/components/esp_local_ctrl/include -I/home/igor/esp/esp-idf/components/esp_psram/include -I/home/igor/esp/esp-idf/components/sdmmc/include -I/home/igor/esp/esp-idf/components/esp_serial_slave_link/include -I/home/igor/esp/esp-idf/components/espcoredump/include -I/home/igor/esp/esp-idf/components/espcoredump/include/port/xtensa -I/home/igor/esp/esp-idf/components/wear_levelling/include -I/home/igor/esp/esp-idf/components/fatfs/diskio -I/home/igor/esp/esp-idf/components/fatfs/vfs -I/home/igor/esp/esp-idf/components/fatfs/src -I/home/igor/esp/esp-idf/components/idf_test/include -I/home/igor/esp/esp-idf/components/idf_test/include/esp32 -I/home/igor/esp/esp-idf/components/ieee802154/include -I/home/igor/esp/esp-idf/components/json/cJSON -I/home/igor/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/igor/esp/esp-idf/components/perfmon/include -I/home/igor/esp/esp-idf/components/spiffs/include -I/home/igor/esp/esp-idf/components/ulp/ulp_common/include -I/home/igor/esp/esp-idf/components/ulp/ulp_common/include/esp32 -I/home/igor/esp/esp-idf/components/wifi_provisioning/include -I/home/igor/esp/experiment-ci-cd/components/esp_idf_lib_helpers -I/home/igor/esp/experiment-ci-cd/components/dht OBJECT_DIR = esp-idf/main/CMakeFiles/__idf_main.dir OBJECT_FILE_DIR = esp-idf/main/CMakeFiles/__idf_main.dir - TARGET_COMPILE_PDB = esp-idf/main/CMakeFiles/__idf_main.dir/__idf_main.pdb - TARGET_PDB = esp-idf/main/libmain.pdb # ============================================================================= @@ -15157,9 +13604,8 @@ build esp-idf/main/libmain.a: C_STATIC_LIBRARY_LINKER____idf_main_ esp-idf/main/ OBJECT_DIR = esp-idf/main/CMakeFiles/__idf_main.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/main/CMakeFiles/__idf_main.dir/__idf_main.pdb TARGET_FILE = esp-idf/main/libmain.a - TARGET_PDB = esp-idf/main/libmain.pdb + TARGET_PDB = main.a.dbg ############################################# @@ -15316,8 +13762,6 @@ build esp-idf/dht/CMakeFiles/__idf_dht.dir/dht.c.obj: C_COMPILER____idf_dht_unsc INCLUDES = -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/experiment-ci-cd/components/dht -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/driver/include -I/home/igor/esp/esp-idf/components/driver/deprecated -I/home/igor/esp/esp-idf/components/driver/esp32/include -I/home/igor/esp/esp-idf/components/esp_pm/include -I/home/igor/esp/esp-idf/components/esp_ringbuf/include -I/home/igor/esp/experiment-ci-cd/components/esp_idf_lib_helpers OBJECT_DIR = esp-idf/dht/CMakeFiles/__idf_dht.dir OBJECT_FILE_DIR = esp-idf/dht/CMakeFiles/__idf_dht.dir - TARGET_COMPILE_PDB = esp-idf/dht/CMakeFiles/__idf_dht.dir/__idf_dht.pdb - TARGET_PDB = esp-idf/dht/libdht.pdb # ============================================================================= @@ -15332,9 +13776,8 @@ build esp-idf/dht/libdht.a: C_STATIC_LIBRARY_LINKER____idf_dht_ esp-idf/dht/CMak OBJECT_DIR = esp-idf/dht/CMakeFiles/__idf_dht.dir POST_BUILD = : PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/dht/CMakeFiles/__idf_dht.dir/__idf_dht.pdb TARGET_FILE = esp-idf/dht/libdht.a - TARGET_PDB = esp-idf/dht/libdht.pdb + TARGET_PDB = dht.a.dbg ############################################# @@ -16324,14 +14767,14 @@ build esp-idf/xtensa/all: phony esp-idf/xtensa/libxtensa.a ############################################# # Re-run CMake if any of its inputs changed. -build build.ninja: RERUN_CMAKE | /home/igor/esp/esp-idf/.git/HEAD /home/igor/esp/esp-idf/.git/modules/components/asio/asio/HEAD /home/igor/esp/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/igor/esp/esp-idf/.git/modules/components/cmock/CMock/HEAD /home/igor/esp/esp-idf/.git/modules/components/esp_phy/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/ieee802154/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/json/cJSON/HEAD /home/igor/esp/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/igor/esp/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/igor/esp/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/igor/esp/esp-idf/.git/modules/components/openthread/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/openthread/openthread/HEAD /home/igor/esp/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/igor/esp/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/igor/esp/esp-idf/.git/modules/components/tinyusb/tinyusb/HEAD /home/igor/esp/esp-idf/.git/modules/components/unity/unity/HEAD /home/igor/esp/esp-idf/.git/modules/examples/build_system/cmake/import_lib/main/lib/tinyxml2/HEAD /home/igor/esp/esp-idf/.git/modules/examples/peripherals/secure_element/atecc608_ecdsa/components/esp-cryptoauthlib/HEAD /home/igor/esp/esp-idf/.git/refs/heads/master /home/igor/esp/esp-idf/CMakeLists.txt /home/igor/esp/esp-idf/components/app_trace/CMakeLists.txt /home/igor/esp/esp-idf/components/app_trace/project_include.cmake /home/igor/esp/esp-idf/components/app_update/CMakeLists.txt /home/igor/esp/esp-idf/components/asio/CMakeLists.txt /home/igor/esp/esp-idf/components/asio/asio/.git /home/igor/esp/esp-idf/components/bootloader/CMakeLists.txt /home/igor/esp/esp-idf/components/bootloader/project_include.cmake /home/igor/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/igor/esp/esp-idf/components/bootloader_support/CMakeLists.txt /home/igor/esp/esp-idf/components/bt/CMakeLists.txt /home/igor/esp/esp-idf/components/bt/controller/lib_esp32/.git /home/igor/esp/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git /home/igor/esp/esp-idf/components/bt/controller/lib_esp32c3_family/.git /home/igor/esp/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git /home/igor/esp/esp-idf/components/bt/host/nimble/nimble/.git /home/igor/esp/esp-idf/components/cmock/CMakeLists.txt /home/igor/esp/esp-idf/components/cmock/CMock/.git /home/igor/esp/esp-idf/components/console/CMakeLists.txt /home/igor/esp/esp-idf/components/cxx/CMakeLists.txt /home/igor/esp/esp-idf/components/driver/CMakeLists.txt /home/igor/esp/esp-idf/components/efuse/CMakeLists.txt /home/igor/esp/esp-idf/components/efuse/esp32/sources.cmake /home/igor/esp/esp-idf/components/esp-tls/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_adc_cal/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_common/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_common/project_include.cmake /home/igor/esp/esp-idf/components/esp_eth/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_event/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_gdbstub/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_hid/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_http_client/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_http_server/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_https_ota/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_https_server/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_hw_support/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_lcd/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_local_ctrl/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_netif/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_phy/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_phy/lib/.git /home/igor/esp/esp-idf/components/esp_pm/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_psram/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_psram/project_include.cmake /home/igor/esp/esp-idf/components/esp_ringbuf/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_rom/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_serial_slave_link/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_system/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_system/ld/ld.cmake /home/igor/esp/esp-idf/components/esp_system/port/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_system/port/soc/esp32/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_timer/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_wifi/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_wifi/lib/.git /home/igor/esp/esp-idf/components/espcoredump/CMakeLists.txt /home/igor/esp/esp-idf/components/esptool_py/CMakeLists.txt /home/igor/esp/esp-idf/components/esptool_py/project_include.cmake /home/igor/esp/esp-idf/components/fatfs/CMakeLists.txt /home/igor/esp/esp-idf/components/fatfs/project_include.cmake /home/igor/esp/esp-idf/components/freertos/CMakeLists.txt /home/igor/esp/esp-idf/components/hal/CMakeLists.txt /home/igor/esp/esp-idf/components/heap/CMakeLists.txt /home/igor/esp/esp-idf/components/http_parser/CMakeLists.txt /home/igor/esp/esp-idf/components/idf_test/CMakeLists.txt /home/igor/esp/esp-idf/components/ieee802154/CMakeLists.txt /home/igor/esp/esp-idf/components/ieee802154/lib/.git /home/igor/esp/esp-idf/components/json/CMakeLists.txt /home/igor/esp/esp-idf/components/json/cJSON/.git /home/igor/esp/esp-idf/components/log/CMakeLists.txt /home/igor/esp/esp-idf/components/lwip/CMakeLists.txt /home/igor/esp/esp-idf/components/lwip/lwip/.git /home/igor/esp/esp-idf/components/mbedtls/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/.git /home/igor/esp/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt /home/igor/esp/esp-idf/components/mdns/CMakeLists.txt /home/igor/esp/esp-idf/components/mqtt/CMakeLists.txt /home/igor/esp/esp-idf/components/mqtt/esp-mqtt/.git /home/igor/esp/esp-idf/components/newlib/CMakeLists.txt /home/igor/esp/esp-idf/components/newlib/port/CMakeLists.txt /home/igor/esp/esp-idf/components/nvs_flash/CMakeLists.txt /home/igor/esp/esp-idf/components/openthread/CMakeLists.txt /home/igor/esp/esp-idf/components/openthread/lib/.git /home/igor/esp/esp-idf/components/openthread/openthread/.git /home/igor/esp/esp-idf/components/partition_table/CMakeLists.txt /home/igor/esp/esp-idf/components/partition_table/partitions_singleapp.csv /home/igor/esp/esp-idf/components/partition_table/project_include.cmake /home/igor/esp/esp-idf/components/perfmon/CMakeLists.txt /home/igor/esp/esp-idf/components/protobuf-c/CMakeLists.txt /home/igor/esp/esp-idf/components/protobuf-c/protobuf-c/.git /home/igor/esp/esp-idf/components/protocomm/CMakeLists.txt /home/igor/esp/esp-idf/components/pthread/CMakeLists.txt /home/igor/esp/esp-idf/components/sdmmc/CMakeLists.txt /home/igor/esp/esp-idf/components/soc/CMakeLists.txt /home/igor/esp/esp-idf/components/soc/esp32/CMakeLists.txt /home/igor/esp/esp-idf/components/spi_flash/CMakeLists.txt /home/igor/esp/esp-idf/components/spiffs/CMakeLists.txt /home/igor/esp/esp-idf/components/spiffs/project_include.cmake /home/igor/esp/esp-idf/components/spiffs/spiffs/.git /home/igor/esp/esp-idf/components/tcp_transport/CMakeLists.txt /home/igor/esp/esp-idf/components/tinyusb/CMakeLists.txt /home/igor/esp/esp-idf/components/tinyusb/tinyusb/.git /home/igor/esp/esp-idf/components/ulp/CMakeLists.txt /home/igor/esp/esp-idf/components/ulp/project_include.cmake /home/igor/esp/esp-idf/components/unity/CMakeLists.txt /home/igor/esp/esp-idf/components/unity/unity/.git /home/igor/esp/esp-idf/components/usb/CMakeLists.txt /home/igor/esp/esp-idf/components/vfs/CMakeLists.txt /home/igor/esp/esp-idf/components/wear_levelling/CMakeLists.txt /home/igor/esp/esp-idf/components/wifi_provisioning/CMakeLists.txt /home/igor/esp/esp-idf/components/wpa_supplicant/CMakeLists.txt /home/igor/esp/esp-idf/components/xtensa/CMakeLists.txt /home/igor/esp/esp-idf/components/xtensa/project_include.cmake /home/igor/esp/esp-idf/examples/build_system/cmake/import_lib/main/lib/tinyxml2/.git /home/igor/esp/esp-idf/examples/peripherals/secure_element/atecc608_ecdsa/components/esp-cryptoauthlib/.git /home/igor/esp/esp-idf/tools/cmake/build.cmake /home/igor/esp/esp-idf/tools/cmake/component.cmake /home/igor/esp/esp-idf/tools/cmake/crosstool_version_check.cmake /home/igor/esp/esp-idf/tools/cmake/depgraph.cmake /home/igor/esp/esp-idf/tools/cmake/dfu.cmake /home/igor/esp/esp-idf/tools/cmake/git_submodules.cmake /home/igor/esp/esp-idf/tools/cmake/idf.cmake /home/igor/esp/esp-idf/tools/cmake/kconfig.cmake /home/igor/esp/esp-idf/tools/cmake/ldgen.cmake /home/igor/esp/esp-idf/tools/cmake/project.cmake /home/igor/esp/esp-idf/tools/cmake/project_description.json.in /home/igor/esp/esp-idf/tools/cmake/targets.cmake /home/igor/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/igor/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/igor/esp/esp-idf/tools/cmake/toolchain-esp32.cmake /home/igor/esp/esp-idf/tools/cmake/uf2.cmake /home/igor/esp/esp-idf/tools/cmake/utilities.cmake /home/igor/esp/esp-idf/tools/cmake/version.cmake /home/igor/esp/esp-idf/tools/kconfig_new/confgen.py /home/igor/esp/esp-idf/tools/kconfig_new/config.env.in /home/igor/esp/experiment-ci-cd/.git/HEAD /home/igor/esp/experiment-ci-cd/.git/refs/heads/main /home/igor/esp/experiment-ci-cd/CMakeLists.txt /home/igor/esp/experiment-ci-cd/components/dht/CMakeLists.txt /home/igor/esp/experiment-ci-cd/components/esp_idf_lib_helpers/CMakeLists.txt /home/igor/esp/experiment-ci-cd/main/CMakeLists.txt /home/igor/esp/experiment-ci-cd/sdkconfig /usr/share/cmake-3.27/Modules/CMakeASMCompiler.cmake.in /usr/share/cmake-3.27/Modules/CMakeASMInformation.cmake /usr/share/cmake-3.27/Modules/CMakeCCompiler.cmake.in /usr/share/cmake-3.27/Modules/CMakeCCompilerABI.c /usr/share/cmake-3.27/Modules/CMakeCInformation.cmake /usr/share/cmake-3.27/Modules/CMakeCXXCompiler.cmake.in /usr/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp /usr/share/cmake-3.27/Modules/CMakeCXXInformation.cmake /usr/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake /usr/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake-3.27/Modules/CMakeCompilerIdDetection.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineASMCompiler.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineCCompiler.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineCXXCompiler.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineCompileFeatures.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineCompiler.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineSystem.cmake /usr/share/cmake-3.27/Modules/CMakeFindBinUtils.cmake /usr/share/cmake-3.27/Modules/CMakeGenericSystem.cmake /usr/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake /usr/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake /usr/share/cmake-3.27/Modules/CMakeNinjaFindMake.cmake /usr/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake /usr/share/cmake-3.27/Modules/CMakeParseImplicitIncludeInfo.cmake /usr/share/cmake-3.27/Modules/CMakeParseImplicitLinkInfo.cmake /usr/share/cmake-3.27/Modules/CMakeParseLibraryArchitecture.cmake /usr/share/cmake-3.27/Modules/CMakeSystem.cmake.in /usr/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake-3.27/Modules/CMakeTestASMCompiler.cmake /usr/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake /usr/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake /usr/share/cmake-3.27/Modules/CMakeTestCompilerCommon.cmake /usr/share/cmake-3.27/Modules/CheckCCompilerFlag.cmake /usr/share/cmake-3.27/Modules/CheckCSourceCompiles.cmake /usr/share/cmake-3.27/Modules/CheckIncludeFile.cmake /usr/share/cmake-3.27/Modules/CheckIncludeFileCXX.cmake /usr/share/cmake-3.27/Modules/CheckTypeSize.cmake /usr/share/cmake-3.27/Modules/Compiler/ADSP-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/ARMCC-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/ARMClang-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/AppleClang-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Borland-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /usr/share/cmake-3.27/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Cray-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/GHS-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-ASM.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-C.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-FindBinUtils.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU.cmake /usr/share/cmake-3.27/Modules/Compiler/HP-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/IAR-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /usr/share/cmake-3.27/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /usr/share/cmake-3.27/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Intel-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/LCC-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/MSVC-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/NVHPC-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/PGI-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/PathScale-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/SCO-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/TI-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Tasking-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Watcom-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/XL-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/zOS-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/ExternalProject.cmake /usr/share/cmake-3.27/Modules/ExternalProject/PatchInfo.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/RepositoryInfo.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/UpdateInfo.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/cfgcmd.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/mkdirs.cmake.in /usr/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake /usr/share/cmake-3.27/Modules/FindGit.cmake /usr/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake-3.27/Modules/FindPackageMessage.cmake /usr/share/cmake-3.27/Modules/FindPython/Support.cmake /usr/share/cmake-3.27/Modules/FindPython3.cmake /usr/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake /usr/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake /usr/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake /usr/share/cmake-3.27/Modules/Internal/FeatureTesting.cmake /usr/share/cmake-3.27/Modules/Platform/Generic.cmake /usr/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake CMakeCache.txt CMakeFiles/3.27.2/CMakeASMCompiler.cmake CMakeFiles/3.27.2/CMakeCCompiler.cmake CMakeFiles/3.27.2/CMakeCXXCompiler.cmake CMakeFiles/3.27.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in +build build.ninja: RERUN_CMAKE | /home/igor/esp/esp-idf/.git/HEAD /home/igor/esp/esp-idf/.git/modules/components/asio/asio/HEAD /home/igor/esp/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/igor/esp/esp-idf/.git/modules/components/cmock/CMock/HEAD /home/igor/esp/esp-idf/.git/modules/components/esp_phy/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/ieee802154/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/json/cJSON/HEAD /home/igor/esp/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/igor/esp/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/igor/esp/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/igor/esp/esp-idf/.git/modules/components/openthread/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/openthread/openthread/HEAD /home/igor/esp/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/igor/esp/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/igor/esp/esp-idf/.git/modules/components/tinyusb/tinyusb/HEAD /home/igor/esp/esp-idf/.git/modules/components/unity/unity/HEAD /home/igor/esp/esp-idf/.git/modules/examples/build_system/cmake/import_lib/main/lib/tinyxml2/HEAD /home/igor/esp/esp-idf/.git/modules/examples/peripherals/secure_element/atecc608_ecdsa/components/esp-cryptoauthlib/HEAD /home/igor/esp/esp-idf/.git/refs/heads/master /home/igor/esp/esp-idf/CMakeLists.txt /home/igor/esp/esp-idf/components/app_trace/CMakeLists.txt /home/igor/esp/esp-idf/components/app_trace/project_include.cmake /home/igor/esp/esp-idf/components/app_update/CMakeLists.txt /home/igor/esp/esp-idf/components/asio/CMakeLists.txt /home/igor/esp/esp-idf/components/asio/asio/.git /home/igor/esp/esp-idf/components/bootloader/CMakeLists.txt /home/igor/esp/esp-idf/components/bootloader/project_include.cmake /home/igor/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/igor/esp/esp-idf/components/bootloader_support/CMakeLists.txt /home/igor/esp/esp-idf/components/bt/CMakeLists.txt /home/igor/esp/esp-idf/components/bt/controller/lib_esp32/.git /home/igor/esp/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git /home/igor/esp/esp-idf/components/bt/controller/lib_esp32c3_family/.git /home/igor/esp/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git /home/igor/esp/esp-idf/components/bt/host/nimble/nimble/.git /home/igor/esp/esp-idf/components/cmock/CMakeLists.txt /home/igor/esp/esp-idf/components/cmock/CMock/.git /home/igor/esp/esp-idf/components/console/CMakeLists.txt /home/igor/esp/esp-idf/components/cxx/CMakeLists.txt /home/igor/esp/esp-idf/components/driver/CMakeLists.txt /home/igor/esp/esp-idf/components/efuse/CMakeLists.txt /home/igor/esp/esp-idf/components/efuse/esp32/sources.cmake /home/igor/esp/esp-idf/components/esp-tls/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_adc_cal/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_common/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_common/project_include.cmake /home/igor/esp/esp-idf/components/esp_eth/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_event/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_gdbstub/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_hid/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_http_client/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_http_server/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_https_ota/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_https_server/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_hw_support/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_lcd/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_local_ctrl/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_netif/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_phy/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_phy/lib/.git /home/igor/esp/esp-idf/components/esp_pm/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_psram/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_psram/project_include.cmake /home/igor/esp/esp-idf/components/esp_ringbuf/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_rom/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_serial_slave_link/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_system/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_system/ld/ld.cmake /home/igor/esp/esp-idf/components/esp_system/port/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_system/port/soc/esp32/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_timer/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_wifi/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_wifi/lib/.git /home/igor/esp/esp-idf/components/espcoredump/CMakeLists.txt /home/igor/esp/esp-idf/components/esptool_py/CMakeLists.txt /home/igor/esp/esp-idf/components/esptool_py/project_include.cmake /home/igor/esp/esp-idf/components/fatfs/CMakeLists.txt /home/igor/esp/esp-idf/components/fatfs/project_include.cmake /home/igor/esp/esp-idf/components/freertos/CMakeLists.txt /home/igor/esp/esp-idf/components/hal/CMakeLists.txt /home/igor/esp/esp-idf/components/heap/CMakeLists.txt /home/igor/esp/esp-idf/components/http_parser/CMakeLists.txt /home/igor/esp/esp-idf/components/idf_test/CMakeLists.txt /home/igor/esp/esp-idf/components/ieee802154/CMakeLists.txt /home/igor/esp/esp-idf/components/ieee802154/lib/.git /home/igor/esp/esp-idf/components/json/CMakeLists.txt /home/igor/esp/esp-idf/components/json/cJSON/.git /home/igor/esp/esp-idf/components/log/CMakeLists.txt /home/igor/esp/esp-idf/components/lwip/CMakeLists.txt /home/igor/esp/esp-idf/components/lwip/lwip/.git /home/igor/esp/esp-idf/components/mbedtls/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/.git /home/igor/esp/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt /home/igor/esp/esp-idf/components/mdns/CMakeLists.txt /home/igor/esp/esp-idf/components/mqtt/CMakeLists.txt /home/igor/esp/esp-idf/components/mqtt/esp-mqtt/.git /home/igor/esp/esp-idf/components/newlib/CMakeLists.txt /home/igor/esp/esp-idf/components/newlib/port/CMakeLists.txt /home/igor/esp/esp-idf/components/nvs_flash/CMakeLists.txt /home/igor/esp/esp-idf/components/openthread/CMakeLists.txt /home/igor/esp/esp-idf/components/openthread/lib/.git /home/igor/esp/esp-idf/components/openthread/openthread/.git /home/igor/esp/esp-idf/components/partition_table/CMakeLists.txt /home/igor/esp/esp-idf/components/partition_table/partitions_singleapp.csv /home/igor/esp/esp-idf/components/partition_table/project_include.cmake /home/igor/esp/esp-idf/components/perfmon/CMakeLists.txt /home/igor/esp/esp-idf/components/protobuf-c/CMakeLists.txt /home/igor/esp/esp-idf/components/protobuf-c/protobuf-c/.git /home/igor/esp/esp-idf/components/protocomm/CMakeLists.txt /home/igor/esp/esp-idf/components/pthread/CMakeLists.txt /home/igor/esp/esp-idf/components/sdmmc/CMakeLists.txt /home/igor/esp/esp-idf/components/soc/CMakeLists.txt /home/igor/esp/esp-idf/components/soc/esp32/CMakeLists.txt /home/igor/esp/esp-idf/components/spi_flash/CMakeLists.txt /home/igor/esp/esp-idf/components/spiffs/CMakeLists.txt /home/igor/esp/esp-idf/components/spiffs/project_include.cmake /home/igor/esp/esp-idf/components/spiffs/spiffs/.git /home/igor/esp/esp-idf/components/tcp_transport/CMakeLists.txt /home/igor/esp/esp-idf/components/tinyusb/CMakeLists.txt /home/igor/esp/esp-idf/components/tinyusb/tinyusb/.git /home/igor/esp/esp-idf/components/ulp/CMakeLists.txt /home/igor/esp/esp-idf/components/ulp/project_include.cmake /home/igor/esp/esp-idf/components/unity/CMakeLists.txt /home/igor/esp/esp-idf/components/unity/unity/.git /home/igor/esp/esp-idf/components/usb/CMakeLists.txt /home/igor/esp/esp-idf/components/vfs/CMakeLists.txt /home/igor/esp/esp-idf/components/wear_levelling/CMakeLists.txt /home/igor/esp/esp-idf/components/wifi_provisioning/CMakeLists.txt /home/igor/esp/esp-idf/components/wpa_supplicant/CMakeLists.txt /home/igor/esp/esp-idf/components/xtensa/CMakeLists.txt /home/igor/esp/esp-idf/components/xtensa/project_include.cmake /home/igor/esp/esp-idf/examples/build_system/cmake/import_lib/main/lib/tinyxml2/.git /home/igor/esp/esp-idf/examples/peripherals/secure_element/atecc608_ecdsa/components/esp-cryptoauthlib/.git /home/igor/esp/esp-idf/tools/cmake/build.cmake /home/igor/esp/esp-idf/tools/cmake/component.cmake /home/igor/esp/esp-idf/tools/cmake/crosstool_version_check.cmake /home/igor/esp/esp-idf/tools/cmake/depgraph.cmake /home/igor/esp/esp-idf/tools/cmake/dfu.cmake /home/igor/esp/esp-idf/tools/cmake/git_submodules.cmake /home/igor/esp/esp-idf/tools/cmake/idf.cmake /home/igor/esp/esp-idf/tools/cmake/kconfig.cmake /home/igor/esp/esp-idf/tools/cmake/ldgen.cmake /home/igor/esp/esp-idf/tools/cmake/project.cmake /home/igor/esp/esp-idf/tools/cmake/project_description.json.in /home/igor/esp/esp-idf/tools/cmake/targets.cmake /home/igor/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/igor/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/igor/esp/esp-idf/tools/cmake/toolchain-esp32.cmake /home/igor/esp/esp-idf/tools/cmake/uf2.cmake /home/igor/esp/esp-idf/tools/cmake/utilities.cmake /home/igor/esp/esp-idf/tools/cmake/version.cmake /home/igor/esp/esp-idf/tools/kconfig_new/confgen.py /home/igor/esp/esp-idf/tools/kconfig_new/config.env.in /home/igor/esp/experiment-ci-cd/.git/HEAD /home/igor/esp/experiment-ci-cd/.git/refs/heads/main /home/igor/esp/experiment-ci-cd/CMakeLists.txt /home/igor/esp/experiment-ci-cd/components/dht/CMakeLists.txt /home/igor/esp/experiment-ci-cd/components/esp_idf_lib_helpers/CMakeLists.txt /home/igor/esp/experiment-ci-cd/main/CMakeLists.txt /home/igor/esp/experiment-ci-cd/sdkconfig /usr/share/cmake-3.27/Modules/CMakeASMInformation.cmake /usr/share/cmake-3.27/Modules/CMakeCInformation.cmake /usr/share/cmake-3.27/Modules/CMakeCXXInformation.cmake /usr/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake /usr/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake-3.27/Modules/CMakeGenericSystem.cmake /usr/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake /usr/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake /usr/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake /usr/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake-3.27/Modules/CheckCCompilerFlag.cmake /usr/share/cmake-3.27/Modules/CheckCSourceCompiles.cmake /usr/share/cmake-3.27/Modules/CheckIncludeFile.cmake /usr/share/cmake-3.27/Modules/CheckIncludeFileCXX.cmake /usr/share/cmake-3.27/Modules/CheckTypeSize.cmake /usr/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-ASM.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-C.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU.cmake /usr/share/cmake-3.27/Modules/ExternalProject.cmake /usr/share/cmake-3.27/Modules/ExternalProject/PatchInfo.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/RepositoryInfo.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/UpdateInfo.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/cfgcmd.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/mkdirs.cmake.in /usr/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake /usr/share/cmake-3.27/Modules/FindGit.cmake /usr/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake-3.27/Modules/FindPackageMessage.cmake /usr/share/cmake-3.27/Modules/FindPython/Support.cmake /usr/share/cmake-3.27/Modules/FindPython3.cmake /usr/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake /usr/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake /usr/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake /usr/share/cmake-3.27/Modules/Platform/Generic.cmake /usr/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake CMakeCache.txt CMakeFiles/3.27.6/CMakeASMCompiler.cmake CMakeFiles/3.27.6/CMakeCCompiler.cmake CMakeFiles/3.27.6/CMakeCXXCompiler.cmake CMakeFiles/3.27.6/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in pool = console ############################################# # A missing CMake input file is not an error. -build /home/igor/esp/esp-idf/.git/HEAD /home/igor/esp/esp-idf/.git/modules/components/asio/asio/HEAD /home/igor/esp/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/igor/esp/esp-idf/.git/modules/components/cmock/CMock/HEAD /home/igor/esp/esp-idf/.git/modules/components/esp_phy/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/ieee802154/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/json/cJSON/HEAD /home/igor/esp/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/igor/esp/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/igor/esp/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/igor/esp/esp-idf/.git/modules/components/openthread/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/openthread/openthread/HEAD /home/igor/esp/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/igor/esp/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/igor/esp/esp-idf/.git/modules/components/tinyusb/tinyusb/HEAD /home/igor/esp/esp-idf/.git/modules/components/unity/unity/HEAD /home/igor/esp/esp-idf/.git/modules/examples/build_system/cmake/import_lib/main/lib/tinyxml2/HEAD /home/igor/esp/esp-idf/.git/modules/examples/peripherals/secure_element/atecc608_ecdsa/components/esp-cryptoauthlib/HEAD /home/igor/esp/esp-idf/.git/refs/heads/master /home/igor/esp/esp-idf/CMakeLists.txt /home/igor/esp/esp-idf/components/app_trace/CMakeLists.txt /home/igor/esp/esp-idf/components/app_trace/project_include.cmake /home/igor/esp/esp-idf/components/app_update/CMakeLists.txt /home/igor/esp/esp-idf/components/asio/CMakeLists.txt /home/igor/esp/esp-idf/components/asio/asio/.git /home/igor/esp/esp-idf/components/bootloader/CMakeLists.txt /home/igor/esp/esp-idf/components/bootloader/project_include.cmake /home/igor/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/igor/esp/esp-idf/components/bootloader_support/CMakeLists.txt /home/igor/esp/esp-idf/components/bt/CMakeLists.txt /home/igor/esp/esp-idf/components/bt/controller/lib_esp32/.git /home/igor/esp/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git /home/igor/esp/esp-idf/components/bt/controller/lib_esp32c3_family/.git /home/igor/esp/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git /home/igor/esp/esp-idf/components/bt/host/nimble/nimble/.git /home/igor/esp/esp-idf/components/cmock/CMakeLists.txt /home/igor/esp/esp-idf/components/cmock/CMock/.git /home/igor/esp/esp-idf/components/console/CMakeLists.txt /home/igor/esp/esp-idf/components/cxx/CMakeLists.txt /home/igor/esp/esp-idf/components/driver/CMakeLists.txt /home/igor/esp/esp-idf/components/efuse/CMakeLists.txt /home/igor/esp/esp-idf/components/efuse/esp32/sources.cmake /home/igor/esp/esp-idf/components/esp-tls/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_adc_cal/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_common/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_common/project_include.cmake /home/igor/esp/esp-idf/components/esp_eth/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_event/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_gdbstub/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_hid/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_http_client/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_http_server/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_https_ota/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_https_server/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_hw_support/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_lcd/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_local_ctrl/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_netif/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_phy/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_phy/lib/.git /home/igor/esp/esp-idf/components/esp_pm/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_psram/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_psram/project_include.cmake /home/igor/esp/esp-idf/components/esp_ringbuf/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_rom/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_serial_slave_link/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_system/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_system/ld/ld.cmake /home/igor/esp/esp-idf/components/esp_system/port/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_system/port/soc/esp32/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_timer/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_wifi/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_wifi/lib/.git /home/igor/esp/esp-idf/components/espcoredump/CMakeLists.txt /home/igor/esp/esp-idf/components/esptool_py/CMakeLists.txt /home/igor/esp/esp-idf/components/esptool_py/project_include.cmake /home/igor/esp/esp-idf/components/fatfs/CMakeLists.txt /home/igor/esp/esp-idf/components/fatfs/project_include.cmake /home/igor/esp/esp-idf/components/freertos/CMakeLists.txt /home/igor/esp/esp-idf/components/hal/CMakeLists.txt /home/igor/esp/esp-idf/components/heap/CMakeLists.txt /home/igor/esp/esp-idf/components/http_parser/CMakeLists.txt /home/igor/esp/esp-idf/components/idf_test/CMakeLists.txt /home/igor/esp/esp-idf/components/ieee802154/CMakeLists.txt /home/igor/esp/esp-idf/components/ieee802154/lib/.git /home/igor/esp/esp-idf/components/json/CMakeLists.txt /home/igor/esp/esp-idf/components/json/cJSON/.git /home/igor/esp/esp-idf/components/log/CMakeLists.txt /home/igor/esp/esp-idf/components/lwip/CMakeLists.txt /home/igor/esp/esp-idf/components/lwip/lwip/.git /home/igor/esp/esp-idf/components/mbedtls/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/.git /home/igor/esp/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt /home/igor/esp/esp-idf/components/mdns/CMakeLists.txt /home/igor/esp/esp-idf/components/mqtt/CMakeLists.txt /home/igor/esp/esp-idf/components/mqtt/esp-mqtt/.git /home/igor/esp/esp-idf/components/newlib/CMakeLists.txt /home/igor/esp/esp-idf/components/newlib/port/CMakeLists.txt /home/igor/esp/esp-idf/components/nvs_flash/CMakeLists.txt /home/igor/esp/esp-idf/components/openthread/CMakeLists.txt /home/igor/esp/esp-idf/components/openthread/lib/.git /home/igor/esp/esp-idf/components/openthread/openthread/.git /home/igor/esp/esp-idf/components/partition_table/CMakeLists.txt /home/igor/esp/esp-idf/components/partition_table/partitions_singleapp.csv /home/igor/esp/esp-idf/components/partition_table/project_include.cmake /home/igor/esp/esp-idf/components/perfmon/CMakeLists.txt /home/igor/esp/esp-idf/components/protobuf-c/CMakeLists.txt /home/igor/esp/esp-idf/components/protobuf-c/protobuf-c/.git /home/igor/esp/esp-idf/components/protocomm/CMakeLists.txt /home/igor/esp/esp-idf/components/pthread/CMakeLists.txt /home/igor/esp/esp-idf/components/sdmmc/CMakeLists.txt /home/igor/esp/esp-idf/components/soc/CMakeLists.txt /home/igor/esp/esp-idf/components/soc/esp32/CMakeLists.txt /home/igor/esp/esp-idf/components/spi_flash/CMakeLists.txt /home/igor/esp/esp-idf/components/spiffs/CMakeLists.txt /home/igor/esp/esp-idf/components/spiffs/project_include.cmake /home/igor/esp/esp-idf/components/spiffs/spiffs/.git /home/igor/esp/esp-idf/components/tcp_transport/CMakeLists.txt /home/igor/esp/esp-idf/components/tinyusb/CMakeLists.txt /home/igor/esp/esp-idf/components/tinyusb/tinyusb/.git /home/igor/esp/esp-idf/components/ulp/CMakeLists.txt /home/igor/esp/esp-idf/components/ulp/project_include.cmake /home/igor/esp/esp-idf/components/unity/CMakeLists.txt /home/igor/esp/esp-idf/components/unity/unity/.git /home/igor/esp/esp-idf/components/usb/CMakeLists.txt /home/igor/esp/esp-idf/components/vfs/CMakeLists.txt /home/igor/esp/esp-idf/components/wear_levelling/CMakeLists.txt /home/igor/esp/esp-idf/components/wifi_provisioning/CMakeLists.txt /home/igor/esp/esp-idf/components/wpa_supplicant/CMakeLists.txt /home/igor/esp/esp-idf/components/xtensa/CMakeLists.txt /home/igor/esp/esp-idf/components/xtensa/project_include.cmake /home/igor/esp/esp-idf/examples/build_system/cmake/import_lib/main/lib/tinyxml2/.git /home/igor/esp/esp-idf/examples/peripherals/secure_element/atecc608_ecdsa/components/esp-cryptoauthlib/.git /home/igor/esp/esp-idf/tools/cmake/build.cmake /home/igor/esp/esp-idf/tools/cmake/component.cmake /home/igor/esp/esp-idf/tools/cmake/crosstool_version_check.cmake /home/igor/esp/esp-idf/tools/cmake/depgraph.cmake /home/igor/esp/esp-idf/tools/cmake/dfu.cmake /home/igor/esp/esp-idf/tools/cmake/git_submodules.cmake /home/igor/esp/esp-idf/tools/cmake/idf.cmake /home/igor/esp/esp-idf/tools/cmake/kconfig.cmake /home/igor/esp/esp-idf/tools/cmake/ldgen.cmake /home/igor/esp/esp-idf/tools/cmake/project.cmake /home/igor/esp/esp-idf/tools/cmake/project_description.json.in /home/igor/esp/esp-idf/tools/cmake/targets.cmake /home/igor/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/igor/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/igor/esp/esp-idf/tools/cmake/toolchain-esp32.cmake /home/igor/esp/esp-idf/tools/cmake/uf2.cmake /home/igor/esp/esp-idf/tools/cmake/utilities.cmake /home/igor/esp/esp-idf/tools/cmake/version.cmake /home/igor/esp/esp-idf/tools/kconfig_new/confgen.py /home/igor/esp/esp-idf/tools/kconfig_new/config.env.in /home/igor/esp/experiment-ci-cd/.git/HEAD /home/igor/esp/experiment-ci-cd/.git/refs/heads/main /home/igor/esp/experiment-ci-cd/CMakeLists.txt /home/igor/esp/experiment-ci-cd/components/dht/CMakeLists.txt /home/igor/esp/experiment-ci-cd/components/esp_idf_lib_helpers/CMakeLists.txt /home/igor/esp/experiment-ci-cd/main/CMakeLists.txt /home/igor/esp/experiment-ci-cd/sdkconfig /usr/share/cmake-3.27/Modules/CMakeASMCompiler.cmake.in /usr/share/cmake-3.27/Modules/CMakeASMInformation.cmake /usr/share/cmake-3.27/Modules/CMakeCCompiler.cmake.in /usr/share/cmake-3.27/Modules/CMakeCCompilerABI.c /usr/share/cmake-3.27/Modules/CMakeCInformation.cmake /usr/share/cmake-3.27/Modules/CMakeCXXCompiler.cmake.in /usr/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp /usr/share/cmake-3.27/Modules/CMakeCXXInformation.cmake /usr/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake /usr/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake-3.27/Modules/CMakeCompilerIdDetection.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineASMCompiler.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineCCompiler.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineCXXCompiler.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineCompileFeatures.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineCompiler.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake /usr/share/cmake-3.27/Modules/CMakeDetermineSystem.cmake /usr/share/cmake-3.27/Modules/CMakeFindBinUtils.cmake /usr/share/cmake-3.27/Modules/CMakeGenericSystem.cmake /usr/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake /usr/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake /usr/share/cmake-3.27/Modules/CMakeNinjaFindMake.cmake /usr/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake /usr/share/cmake-3.27/Modules/CMakeParseImplicitIncludeInfo.cmake /usr/share/cmake-3.27/Modules/CMakeParseImplicitLinkInfo.cmake /usr/share/cmake-3.27/Modules/CMakeParseLibraryArchitecture.cmake /usr/share/cmake-3.27/Modules/CMakeSystem.cmake.in /usr/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake-3.27/Modules/CMakeTestASMCompiler.cmake /usr/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake /usr/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake /usr/share/cmake-3.27/Modules/CMakeTestCompilerCommon.cmake /usr/share/cmake-3.27/Modules/CheckCCompilerFlag.cmake /usr/share/cmake-3.27/Modules/CheckCSourceCompiles.cmake /usr/share/cmake-3.27/Modules/CheckIncludeFile.cmake /usr/share/cmake-3.27/Modules/CheckIncludeFileCXX.cmake /usr/share/cmake-3.27/Modules/CheckTypeSize.cmake /usr/share/cmake-3.27/Modules/Compiler/ADSP-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/ARMCC-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/ARMClang-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/AppleClang-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Borland-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /usr/share/cmake-3.27/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Cray-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/GHS-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-ASM.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-C.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-FindBinUtils.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU.cmake /usr/share/cmake-3.27/Modules/Compiler/HP-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/IAR-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /usr/share/cmake-3.27/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /usr/share/cmake-3.27/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Intel-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/LCC-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/MSVC-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/NVHPC-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/PGI-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/PathScale-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/SCO-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/TI-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Tasking-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/Watcom-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/XL-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/zOS-C-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /usr/share/cmake-3.27/Modules/ExternalProject.cmake /usr/share/cmake-3.27/Modules/ExternalProject/PatchInfo.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/RepositoryInfo.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/UpdateInfo.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/cfgcmd.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/mkdirs.cmake.in /usr/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake /usr/share/cmake-3.27/Modules/FindGit.cmake /usr/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake-3.27/Modules/FindPackageMessage.cmake /usr/share/cmake-3.27/Modules/FindPython/Support.cmake /usr/share/cmake-3.27/Modules/FindPython3.cmake /usr/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake /usr/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake /usr/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake /usr/share/cmake-3.27/Modules/Internal/FeatureTesting.cmake /usr/share/cmake-3.27/Modules/Platform/Generic.cmake /usr/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake CMakeCache.txt CMakeFiles/3.27.2/CMakeASMCompiler.cmake CMakeFiles/3.27.2/CMakeCCompiler.cmake CMakeFiles/3.27.2/CMakeCXXCompiler.cmake CMakeFiles/3.27.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in: phony +build /home/igor/esp/esp-idf/.git/HEAD /home/igor/esp/esp-idf/.git/modules/components/asio/asio/HEAD /home/igor/esp/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/igor/esp/esp-idf/.git/modules/components/cmock/CMock/HEAD /home/igor/esp/esp-idf/.git/modules/components/esp_phy/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/ieee802154/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/json/cJSON/HEAD /home/igor/esp/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/igor/esp/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/igor/esp/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/igor/esp/esp-idf/.git/modules/components/openthread/lib/HEAD /home/igor/esp/esp-idf/.git/modules/components/openthread/openthread/HEAD /home/igor/esp/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/igor/esp/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/igor/esp/esp-idf/.git/modules/components/tinyusb/tinyusb/HEAD /home/igor/esp/esp-idf/.git/modules/components/unity/unity/HEAD /home/igor/esp/esp-idf/.git/modules/examples/build_system/cmake/import_lib/main/lib/tinyxml2/HEAD /home/igor/esp/esp-idf/.git/modules/examples/peripherals/secure_element/atecc608_ecdsa/components/esp-cryptoauthlib/HEAD /home/igor/esp/esp-idf/.git/refs/heads/master /home/igor/esp/esp-idf/CMakeLists.txt /home/igor/esp/esp-idf/components/app_trace/CMakeLists.txt /home/igor/esp/esp-idf/components/app_trace/project_include.cmake /home/igor/esp/esp-idf/components/app_update/CMakeLists.txt /home/igor/esp/esp-idf/components/asio/CMakeLists.txt /home/igor/esp/esp-idf/components/asio/asio/.git /home/igor/esp/esp-idf/components/bootloader/CMakeLists.txt /home/igor/esp/esp-idf/components/bootloader/project_include.cmake /home/igor/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/igor/esp/esp-idf/components/bootloader_support/CMakeLists.txt /home/igor/esp/esp-idf/components/bt/CMakeLists.txt /home/igor/esp/esp-idf/components/bt/controller/lib_esp32/.git /home/igor/esp/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git /home/igor/esp/esp-idf/components/bt/controller/lib_esp32c3_family/.git /home/igor/esp/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git /home/igor/esp/esp-idf/components/bt/host/nimble/nimble/.git /home/igor/esp/esp-idf/components/cmock/CMakeLists.txt /home/igor/esp/esp-idf/components/cmock/CMock/.git /home/igor/esp/esp-idf/components/console/CMakeLists.txt /home/igor/esp/esp-idf/components/cxx/CMakeLists.txt /home/igor/esp/esp-idf/components/driver/CMakeLists.txt /home/igor/esp/esp-idf/components/efuse/CMakeLists.txt /home/igor/esp/esp-idf/components/efuse/esp32/sources.cmake /home/igor/esp/esp-idf/components/esp-tls/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_adc_cal/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_common/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_common/project_include.cmake /home/igor/esp/esp-idf/components/esp_eth/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_event/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_gdbstub/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_hid/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_http_client/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_http_server/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_https_ota/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_https_server/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_hw_support/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_lcd/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_local_ctrl/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_netif/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_phy/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_phy/lib/.git /home/igor/esp/esp-idf/components/esp_pm/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_psram/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_psram/project_include.cmake /home/igor/esp/esp-idf/components/esp_ringbuf/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_rom/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_serial_slave_link/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_system/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_system/ld/ld.cmake /home/igor/esp/esp-idf/components/esp_system/port/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_system/port/soc/esp32/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_timer/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_wifi/CMakeLists.txt /home/igor/esp/esp-idf/components/esp_wifi/lib/.git /home/igor/esp/esp-idf/components/espcoredump/CMakeLists.txt /home/igor/esp/esp-idf/components/esptool_py/CMakeLists.txt /home/igor/esp/esp-idf/components/esptool_py/project_include.cmake /home/igor/esp/esp-idf/components/fatfs/CMakeLists.txt /home/igor/esp/esp-idf/components/fatfs/project_include.cmake /home/igor/esp/esp-idf/components/freertos/CMakeLists.txt /home/igor/esp/esp-idf/components/hal/CMakeLists.txt /home/igor/esp/esp-idf/components/heap/CMakeLists.txt /home/igor/esp/esp-idf/components/http_parser/CMakeLists.txt /home/igor/esp/esp-idf/components/idf_test/CMakeLists.txt /home/igor/esp/esp-idf/components/ieee802154/CMakeLists.txt /home/igor/esp/esp-idf/components/ieee802154/lib/.git /home/igor/esp/esp-idf/components/json/CMakeLists.txt /home/igor/esp/esp-idf/components/json/cJSON/.git /home/igor/esp/esp-idf/components/log/CMakeLists.txt /home/igor/esp/esp-idf/components/lwip/CMakeLists.txt /home/igor/esp/esp-idf/components/lwip/lwip/.git /home/igor/esp/esp-idf/components/mbedtls/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/.git /home/igor/esp/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt /home/igor/esp/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt /home/igor/esp/esp-idf/components/mdns/CMakeLists.txt /home/igor/esp/esp-idf/components/mqtt/CMakeLists.txt /home/igor/esp/esp-idf/components/mqtt/esp-mqtt/.git /home/igor/esp/esp-idf/components/newlib/CMakeLists.txt /home/igor/esp/esp-idf/components/newlib/port/CMakeLists.txt /home/igor/esp/esp-idf/components/nvs_flash/CMakeLists.txt /home/igor/esp/esp-idf/components/openthread/CMakeLists.txt /home/igor/esp/esp-idf/components/openthread/lib/.git /home/igor/esp/esp-idf/components/openthread/openthread/.git /home/igor/esp/esp-idf/components/partition_table/CMakeLists.txt /home/igor/esp/esp-idf/components/partition_table/partitions_singleapp.csv /home/igor/esp/esp-idf/components/partition_table/project_include.cmake /home/igor/esp/esp-idf/components/perfmon/CMakeLists.txt /home/igor/esp/esp-idf/components/protobuf-c/CMakeLists.txt /home/igor/esp/esp-idf/components/protobuf-c/protobuf-c/.git /home/igor/esp/esp-idf/components/protocomm/CMakeLists.txt /home/igor/esp/esp-idf/components/pthread/CMakeLists.txt /home/igor/esp/esp-idf/components/sdmmc/CMakeLists.txt /home/igor/esp/esp-idf/components/soc/CMakeLists.txt /home/igor/esp/esp-idf/components/soc/esp32/CMakeLists.txt /home/igor/esp/esp-idf/components/spi_flash/CMakeLists.txt /home/igor/esp/esp-idf/components/spiffs/CMakeLists.txt /home/igor/esp/esp-idf/components/spiffs/project_include.cmake /home/igor/esp/esp-idf/components/spiffs/spiffs/.git /home/igor/esp/esp-idf/components/tcp_transport/CMakeLists.txt /home/igor/esp/esp-idf/components/tinyusb/CMakeLists.txt /home/igor/esp/esp-idf/components/tinyusb/tinyusb/.git /home/igor/esp/esp-idf/components/ulp/CMakeLists.txt /home/igor/esp/esp-idf/components/ulp/project_include.cmake /home/igor/esp/esp-idf/components/unity/CMakeLists.txt /home/igor/esp/esp-idf/components/unity/unity/.git /home/igor/esp/esp-idf/components/usb/CMakeLists.txt /home/igor/esp/esp-idf/components/vfs/CMakeLists.txt /home/igor/esp/esp-idf/components/wear_levelling/CMakeLists.txt /home/igor/esp/esp-idf/components/wifi_provisioning/CMakeLists.txt /home/igor/esp/esp-idf/components/wpa_supplicant/CMakeLists.txt /home/igor/esp/esp-idf/components/xtensa/CMakeLists.txt /home/igor/esp/esp-idf/components/xtensa/project_include.cmake /home/igor/esp/esp-idf/examples/build_system/cmake/import_lib/main/lib/tinyxml2/.git /home/igor/esp/esp-idf/examples/peripherals/secure_element/atecc608_ecdsa/components/esp-cryptoauthlib/.git /home/igor/esp/esp-idf/tools/cmake/build.cmake /home/igor/esp/esp-idf/tools/cmake/component.cmake /home/igor/esp/esp-idf/tools/cmake/crosstool_version_check.cmake /home/igor/esp/esp-idf/tools/cmake/depgraph.cmake /home/igor/esp/esp-idf/tools/cmake/dfu.cmake /home/igor/esp/esp-idf/tools/cmake/git_submodules.cmake /home/igor/esp/esp-idf/tools/cmake/idf.cmake /home/igor/esp/esp-idf/tools/cmake/kconfig.cmake /home/igor/esp/esp-idf/tools/cmake/ldgen.cmake /home/igor/esp/esp-idf/tools/cmake/project.cmake /home/igor/esp/esp-idf/tools/cmake/project_description.json.in /home/igor/esp/esp-idf/tools/cmake/targets.cmake /home/igor/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/igor/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/igor/esp/esp-idf/tools/cmake/toolchain-esp32.cmake /home/igor/esp/esp-idf/tools/cmake/uf2.cmake /home/igor/esp/esp-idf/tools/cmake/utilities.cmake /home/igor/esp/esp-idf/tools/cmake/version.cmake /home/igor/esp/esp-idf/tools/kconfig_new/confgen.py /home/igor/esp/esp-idf/tools/kconfig_new/config.env.in /home/igor/esp/experiment-ci-cd/.git/HEAD /home/igor/esp/experiment-ci-cd/.git/refs/heads/main /home/igor/esp/experiment-ci-cd/CMakeLists.txt /home/igor/esp/experiment-ci-cd/components/dht/CMakeLists.txt /home/igor/esp/experiment-ci-cd/components/esp_idf_lib_helpers/CMakeLists.txt /home/igor/esp/experiment-ci-cd/main/CMakeLists.txt /home/igor/esp/experiment-ci-cd/sdkconfig /usr/share/cmake-3.27/Modules/CMakeASMInformation.cmake /usr/share/cmake-3.27/Modules/CMakeCInformation.cmake /usr/share/cmake-3.27/Modules/CMakeCXXInformation.cmake /usr/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake /usr/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake-3.27/Modules/CMakeGenericSystem.cmake /usr/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake /usr/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake /usr/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake /usr/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake-3.27/Modules/CheckCCompilerFlag.cmake /usr/share/cmake-3.27/Modules/CheckCSourceCompiles.cmake /usr/share/cmake-3.27/Modules/CheckIncludeFile.cmake /usr/share/cmake-3.27/Modules/CheckIncludeFileCXX.cmake /usr/share/cmake-3.27/Modules/CheckTypeSize.cmake /usr/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-ASM.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-C.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake /usr/share/cmake-3.27/Modules/Compiler/GNU.cmake /usr/share/cmake-3.27/Modules/ExternalProject.cmake /usr/share/cmake-3.27/Modules/ExternalProject/PatchInfo.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/RepositoryInfo.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/UpdateInfo.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/cfgcmd.txt.in /usr/share/cmake-3.27/Modules/ExternalProject/mkdirs.cmake.in /usr/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake /usr/share/cmake-3.27/Modules/FindGit.cmake /usr/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake-3.27/Modules/FindPackageMessage.cmake /usr/share/cmake-3.27/Modules/FindPython/Support.cmake /usr/share/cmake-3.27/Modules/FindPython3.cmake /usr/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake /usr/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake /usr/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake /usr/share/cmake-3.27/Modules/Platform/Generic.cmake /usr/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake CMakeCache.txt CMakeFiles/3.27.6/CMakeASMCompiler.cmake CMakeFiles/3.27.6/CMakeCCompiler.cmake CMakeFiles/3.27.6/CMakeCXXCompiler.cmake CMakeFiles/3.27.6/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in: phony ############################################# diff --git a/build/compile_commands.json b/build/compile_commands.json index ed9f42a..d0776fe 100644 --- a/build/compile_commands.json +++ b/build/compile_commands.json @@ -991,7 +991,7 @@ }, { "directory": "/home/igor/esp/experiment-ci-cd/build", - "command": "/home/igor/.espressif/tools/xtensa-esp32-elf/esp-2022r1-RC1-11.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D PROJECT_NAME=\\\"experiment-ci-cd\\\" -DPROJECT_VER=\\\"0.1.3-3-gb2c698f-dirty\\\" -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-error=format= -Wno-format -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=/home/igor/esp/experiment-ci-cd=. -fmacro-prefix-map=/home/igor/esp/esp-idf=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0-dev-3654-gc2ccc383da\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj -c /home/igor/esp/esp-idf/components/app_update/esp_app_desc.c", + "command": "/home/igor/.espressif/tools/xtensa-esp32-elf/esp-2022r1-RC1-11.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D PROJECT_NAME=\\\"experiment-ci-cd\\\" -DPROJECT_VER=\\\"0.1.4-16-g3c954cb-dirty\\\" -I/home/igor/esp/experiment-ci-cd/build/config -I/home/igor/esp/esp-idf/components/app_update/include -I/home/igor/esp/esp-idf/components/newlib/platform_include -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include/freertos -I/home/igor/esp/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -I/home/igor/esp/esp-idf/components/freertos/esp_additions/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc -I/home/igor/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/. -I/home/igor/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -I/home/igor/esp/esp-idf/components/heap/include -I/home/igor/esp/esp-idf/components/log/include -I/home/igor/esp/esp-idf/components/soc/include -I/home/igor/esp/esp-idf/components/soc/esp32/. -I/home/igor/esp/esp-idf/components/soc/esp32/include -I/home/igor/esp/esp-idf/components/hal/esp32/include -I/home/igor/esp/esp-idf/components/hal/include -I/home/igor/esp/esp-idf/components/hal/platform_port/include -I/home/igor/esp/esp-idf/components/esp_rom/include -I/home/igor/esp/esp-idf/components/esp_rom/include/esp32 -I/home/igor/esp/esp-idf/components/esp_rom/esp32 -I/home/igor/esp/esp-idf/components/esp_common/include -I/home/igor/esp/esp-idf/components/esp_system/include -I/home/igor/esp/esp-idf/components/esp_system/port/soc -I/home/igor/esp/esp-idf/components/esp_system/port/include/private -I/home/igor/esp/esp-idf/components/xtensa/include -I/home/igor/esp/esp-idf/components/xtensa/esp32/include -I/home/igor/esp/esp-idf/components/lwip/include -I/home/igor/esp/esp-idf/components/lwip/include/apps -I/home/igor/esp/esp-idf/components/lwip/include/apps/sntp -I/home/igor/esp/esp-idf/components/lwip/lwip/src/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include -I/home/igor/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/igor/esp/esp-idf/components/vfs/include -I/home/igor/esp/esp-idf/components/esp_wifi/include -I/home/igor/esp/esp-idf/components/esp_event/include -I/home/igor/esp/esp-idf/components/esp_netif/include -I/home/igor/esp/esp-idf/components/esp_phy/include -I/home/igor/esp/esp-idf/components/esp_phy/esp32/include -I/home/igor/esp/esp-idf/components/spi_flash/include -I/home/igor/esp/esp-idf/components/bootloader_support/include -I/home/igor/esp/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/igor/esp/esp-idf/components/efuse/include -I/home/igor/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-error=format= -Wno-format -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=/home/igor/esp/experiment-ci-cd=. -fmacro-prefix-map=/home/igor/esp/esp-idf=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0-dev-3654-gc2ccc383da\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj -c /home/igor/esp/esp-idf/components/app_update/esp_app_desc.c", "file": "/home/igor/esp/esp-idf/components/app_update/esp_app_desc.c", "output": "esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj" }, diff --git a/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj b/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj index de3799e..83d0dfb 100644 Binary files a/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj and b/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj differ diff --git a/build/esp-idf/app_update/libapp_update.a b/build/esp-idf/app_update/libapp_update.a index aa8976f..efee4e9 100644 Binary files a/build/esp-idf/app_update/libapp_update.a and b/build/esp-idf/app_update/libapp_update.a differ diff --git a/build/experiment-ci-cd.bin b/build/experiment-ci-cd.bin index 8fee8e1..6285820 100644 Binary files a/build/experiment-ci-cd.bin and b/build/experiment-ci-cd.bin differ diff --git a/build/experiment-ci-cd.elf b/build/experiment-ci-cd.elf index 8ed4ed9..929d739 100755 Binary files a/build/experiment-ci-cd.elf and b/build/experiment-ci-cd.elf differ diff --git a/test/test.c b/test/test.c index 883be52..4666294 100644 --- a/test/test.c +++ b/test/test.c @@ -12,5 +12,5 @@ int reasonable_values(float value){ // Teste para verificar a função reasonable_values Test(suite_name, test_name){ // Verifica se a função retorna 1 quando o valor 25.0 é atribuído - cr_assert(reasonable_values(25.0) == 1); + cr_assert(reasonable_values(45.0) == 1); } \ No newline at end of file