rules.ninja 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034
  1. # CMAKE generated file: DO NOT EDIT!
  2. # Generated by "Ninja" Generator, CMake Version 3.28
  3. # This file contains all the rules used to get the outputs files
  4. # built from the input files.
  5. # It is included in the main 'build.ninja'.
  6. # =============================================================================
  7. # Project: esp_sr_02
  8. # Configurations:
  9. # =============================================================================
  10. # =============================================================================
  11. #############################################
  12. # Rule for compiling C files.
  13. rule C_COMPILER__esp_sr_02.2eelf_unscanned_
  14. depfile = $DEP_FILE
  15. deps = gcc
  16. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  17. description = Building C object $out
  18. #############################################
  19. # Rule for linking CXX executable.
  20. rule CXX_EXECUTABLE_LINKER__esp_sr_02.2eelf_
  21. command = $PRE_LINK && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++ $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD
  22. description = Linking CXX executable $TARGET_FILE
  23. restat = $RESTAT
  24. #############################################
  25. # Rule for running custom commands.
  26. rule CUSTOM_COMMAND
  27. command = $COMMAND
  28. description = $DESC
  29. #############################################
  30. # Rule for compiling ASM files.
  31. rule ASM_COMPILER____idf_xtensa_unscanned_
  32. depfile = $DEP_FILE
  33. deps = gcc
  34. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  35. description = Building ASM object $out
  36. #############################################
  37. # Rule for compiling C files.
  38. rule C_COMPILER____idf_xtensa_unscanned_
  39. depfile = $DEP_FILE
  40. deps = gcc
  41. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  42. description = Building C object $out
  43. #############################################
  44. # Rule for linking C static library.
  45. rule C_STATIC_LIBRARY_LINKER____idf_xtensa_
  46. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  47. description = Linking C static library $TARGET_FILE
  48. restat = $RESTAT
  49. #############################################
  50. # Rule for compiling C files.
  51. rule C_COMPILER____idf_esp_driver_gpio_unscanned_
  52. depfile = $DEP_FILE
  53. deps = gcc
  54. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  55. description = Building C object $out
  56. #############################################
  57. # Rule for linking C static library.
  58. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_gpio_
  59. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  60. description = Linking C static library $TARGET_FILE
  61. restat = $RESTAT
  62. #############################################
  63. # Rule for compiling C files.
  64. rule C_COMPILER____idf_esp_pm_unscanned_
  65. depfile = $DEP_FILE
  66. deps = gcc
  67. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  68. description = Building C object $out
  69. #############################################
  70. # Rule for linking C static library.
  71. rule C_STATIC_LIBRARY_LINKER____idf_esp_pm_
  72. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  73. description = Linking C static library $TARGET_FILE
  74. restat = $RESTAT
  75. #############################################
  76. # Rule for compiling ASM files.
  77. rule ASM_COMPILER____idf_mbedtls_unscanned_
  78. depfile = $DEP_FILE
  79. deps = gcc
  80. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  81. description = Building ASM object $out
  82. #############################################
  83. # Rule for compiling C files.
  84. rule C_COMPILER____idf_mbedtls_unscanned_
  85. depfile = $DEP_FILE
  86. deps = gcc
  87. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  88. description = Building C object $out
  89. #############################################
  90. # Rule for linking C static library.
  91. rule C_STATIC_LIBRARY_LINKER____idf_mbedtls_
  92. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  93. description = Linking C static library $TARGET_FILE
  94. restat = $RESTAT
  95. #############################################
  96. # Rule for compiling C files.
  97. rule C_COMPILER__everest_unscanned_
  98. depfile = $DEP_FILE
  99. deps = gcc
  100. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  101. description = Building C object $out
  102. #############################################
  103. # Rule for linking CXX static library.
  104. rule CXX_STATIC_LIBRARY_LINKER__everest_
  105. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  106. description = Linking CXX static library $TARGET_FILE
  107. restat = $RESTAT
  108. #############################################
  109. # Rule for compiling C files.
  110. rule C_COMPILER__p256m_unscanned_
  111. depfile = $DEP_FILE
  112. deps = gcc
  113. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  114. description = Building C object $out
  115. #############################################
  116. # Rule for linking CXX static library.
  117. rule CXX_STATIC_LIBRARY_LINKER__p256m_
  118. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  119. description = Linking CXX static library $TARGET_FILE
  120. restat = $RESTAT
  121. #############################################
  122. # Rule for compiling C files.
  123. rule C_COMPILER__mbedcrypto_unscanned_
  124. depfile = $DEP_FILE
  125. deps = gcc
  126. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  127. description = Building C object $out
  128. #############################################
  129. # Rule for linking CXX static library.
  130. rule CXX_STATIC_LIBRARY_LINKER__mbedcrypto_
  131. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  132. description = Linking CXX static library $TARGET_FILE
  133. restat = $RESTAT
  134. #############################################
  135. # Rule for compiling C files.
  136. rule C_COMPILER__mbedx509_unscanned_
  137. depfile = $DEP_FILE
  138. deps = gcc
  139. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  140. description = Building C object $out
  141. #############################################
  142. # Rule for linking CXX static library.
  143. rule CXX_STATIC_LIBRARY_LINKER__mbedx509_
  144. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  145. description = Linking CXX static library $TARGET_FILE
  146. restat = $RESTAT
  147. #############################################
  148. # Rule for compiling C files.
  149. rule C_COMPILER__mbedtls_unscanned_
  150. depfile = $DEP_FILE
  151. deps = gcc
  152. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  153. description = Building C object $out
  154. #############################################
  155. # Rule for linking CXX static library.
  156. rule CXX_STATIC_LIBRARY_LINKER__mbedtls_
  157. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  158. description = Linking CXX static library $TARGET_FILE
  159. restat = $RESTAT
  160. #############################################
  161. # Rule for compiling C files.
  162. rule C_COMPILER____idf_esp_app_format_unscanned_
  163. depfile = $DEP_FILE
  164. deps = gcc
  165. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  166. description = Building C object $out
  167. #############################################
  168. # Rule for linking C static library.
  169. rule C_STATIC_LIBRARY_LINKER____idf_esp_app_format_
  170. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  171. description = Linking C static library $TARGET_FILE
  172. restat = $RESTAT
  173. #############################################
  174. # Rule for compiling C files.
  175. rule C_COMPILER____idf_esp_bootloader_format_unscanned_
  176. depfile = $DEP_FILE
  177. deps = gcc
  178. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  179. description = Building C object $out
  180. #############################################
  181. # Rule for linking C static library.
  182. rule C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_
  183. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  184. description = Linking C static library $TARGET_FILE
  185. restat = $RESTAT
  186. #############################################
  187. # Rule for compiling C files.
  188. rule C_COMPILER____idf_app_update_unscanned_
  189. depfile = $DEP_FILE
  190. deps = gcc
  191. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  192. description = Building C object $out
  193. #############################################
  194. # Rule for linking C static library.
  195. rule C_STATIC_LIBRARY_LINKER____idf_app_update_
  196. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  197. description = Linking C static library $TARGET_FILE
  198. restat = $RESTAT
  199. #############################################
  200. # Rule for compiling C files.
  201. rule C_COMPILER____idf_esp_partition_unscanned_
  202. depfile = $DEP_FILE
  203. deps = gcc
  204. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  205. description = Building C object $out
  206. #############################################
  207. # Rule for linking C static library.
  208. rule C_STATIC_LIBRARY_LINKER____idf_esp_partition_
  209. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  210. description = Linking C static library $TARGET_FILE
  211. restat = $RESTAT
  212. #############################################
  213. # Rule for compiling C files.
  214. rule C_COMPILER____idf_efuse_unscanned_
  215. depfile = $DEP_FILE
  216. deps = gcc
  217. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  218. description = Building C object $out
  219. #############################################
  220. # Rule for linking C static library.
  221. rule C_STATIC_LIBRARY_LINKER____idf_efuse_
  222. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  223. description = Linking C static library $TARGET_FILE
  224. restat = $RESTAT
  225. #############################################
  226. # Rule for compiling C files.
  227. rule C_COMPILER____idf_bootloader_support_unscanned_
  228. depfile = $DEP_FILE
  229. deps = gcc
  230. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  231. description = Building C object $out
  232. #############################################
  233. # Rule for linking C static library.
  234. rule C_STATIC_LIBRARY_LINKER____idf_bootloader_support_
  235. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  236. description = Linking C static library $TARGET_FILE
  237. restat = $RESTAT
  238. #############################################
  239. # Rule for compiling C files.
  240. rule C_COMPILER____idf_esp_mm_unscanned_
  241. depfile = $DEP_FILE
  242. deps = gcc
  243. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  244. description = Building C object $out
  245. #############################################
  246. # Rule for linking C static library.
  247. rule C_STATIC_LIBRARY_LINKER____idf_esp_mm_
  248. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  249. description = Linking C static library $TARGET_FILE
  250. restat = $RESTAT
  251. #############################################
  252. # Rule for compiling C files.
  253. rule C_COMPILER____idf_spi_flash_unscanned_
  254. depfile = $DEP_FILE
  255. deps = gcc
  256. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  257. description = Building C object $out
  258. #############################################
  259. # Rule for linking C static library.
  260. rule C_STATIC_LIBRARY_LINKER____idf_spi_flash_
  261. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  262. description = Linking C static library $TARGET_FILE
  263. restat = $RESTAT
  264. #############################################
  265. # Rule for compiling ASM files.
  266. rule ASM_COMPILER____idf_esp_system_unscanned_
  267. depfile = $DEP_FILE
  268. deps = gcc
  269. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  270. description = Building ASM object $out
  271. #############################################
  272. # Rule for compiling C files.
  273. rule C_COMPILER____idf_esp_system_unscanned_
  274. depfile = $DEP_FILE
  275. deps = gcc
  276. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  277. description = Building C object $out
  278. #############################################
  279. # Rule for linking C static library.
  280. rule C_STATIC_LIBRARY_LINKER____idf_esp_system_
  281. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  282. description = Linking C static library $TARGET_FILE
  283. restat = $RESTAT
  284. #############################################
  285. # Rule for compiling C files.
  286. rule C_COMPILER____idf_esp_common_unscanned_
  287. depfile = $DEP_FILE
  288. deps = gcc
  289. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  290. description = Building C object $out
  291. #############################################
  292. # Rule for linking C static library.
  293. rule C_STATIC_LIBRARY_LINKER____idf_esp_common_
  294. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  295. description = Linking C static library $TARGET_FILE
  296. restat = $RESTAT
  297. #############################################
  298. # Rule for compiling ASM files.
  299. rule ASM_COMPILER____idf_esp_rom_unscanned_
  300. depfile = $DEP_FILE
  301. deps = gcc
  302. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  303. description = Building ASM object $out
  304. #############################################
  305. # Rule for compiling C files.
  306. rule C_COMPILER____idf_esp_rom_unscanned_
  307. depfile = $DEP_FILE
  308. deps = gcc
  309. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  310. description = Building C object $out
  311. #############################################
  312. # Rule for linking C static library.
  313. rule C_STATIC_LIBRARY_LINKER____idf_esp_rom_
  314. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  315. description = Linking C static library $TARGET_FILE
  316. restat = $RESTAT
  317. #############################################
  318. # Rule for compiling C files.
  319. rule C_COMPILER____idf_hal_unscanned_
  320. depfile = $DEP_FILE
  321. deps = gcc
  322. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  323. description = Building C object $out
  324. #############################################
  325. # Rule for linking C static library.
  326. rule C_STATIC_LIBRARY_LINKER____idf_hal_
  327. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  328. description = Linking C static library $TARGET_FILE
  329. restat = $RESTAT
  330. #############################################
  331. # Rule for compiling C files.
  332. rule C_COMPILER____idf_log_unscanned_
  333. depfile = $DEP_FILE
  334. deps = gcc
  335. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  336. description = Building C object $out
  337. #############################################
  338. # Rule for linking C static library.
  339. rule C_STATIC_LIBRARY_LINKER____idf_log_
  340. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  341. description = Linking C static library $TARGET_FILE
  342. restat = $RESTAT
  343. #############################################
  344. # Rule for compiling C files.
  345. rule C_COMPILER____idf_heap_unscanned_
  346. depfile = $DEP_FILE
  347. deps = gcc
  348. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  349. description = Building C object $out
  350. #############################################
  351. # Rule for linking C static library.
  352. rule C_STATIC_LIBRARY_LINKER____idf_heap_
  353. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  354. description = Linking C static library $TARGET_FILE
  355. restat = $RESTAT
  356. #############################################
  357. # Rule for compiling C files.
  358. rule C_COMPILER____idf_soc_unscanned_
  359. depfile = $DEP_FILE
  360. deps = gcc
  361. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  362. description = Building C object $out
  363. #############################################
  364. # Rule for linking C static library.
  365. rule C_STATIC_LIBRARY_LINKER____idf_soc_
  366. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  367. description = Linking C static library $TARGET_FILE
  368. restat = $RESTAT
  369. #############################################
  370. # Rule for compiling C files.
  371. rule C_COMPILER____idf_esp_hw_support_unscanned_
  372. depfile = $DEP_FILE
  373. deps = gcc
  374. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  375. description = Building C object $out
  376. #############################################
  377. # Rule for linking C static library.
  378. rule C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_
  379. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  380. description = Linking C static library $TARGET_FILE
  381. restat = $RESTAT
  382. #############################################
  383. # Rule for compiling ASM files.
  384. rule ASM_COMPILER____idf_freertos_unscanned_
  385. depfile = $DEP_FILE
  386. deps = gcc
  387. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  388. description = Building ASM object $out
  389. #############################################
  390. # Rule for compiling C files.
  391. rule C_COMPILER____idf_freertos_unscanned_
  392. depfile = $DEP_FILE
  393. deps = gcc
  394. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  395. description = Building C object $out
  396. #############################################
  397. # Rule for linking C static library.
  398. rule C_STATIC_LIBRARY_LINKER____idf_freertos_
  399. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  400. description = Linking C static library $TARGET_FILE
  401. restat = $RESTAT
  402. #############################################
  403. # Rule for compiling C files.
  404. rule C_COMPILER____idf_newlib_unscanned_
  405. depfile = $DEP_FILE
  406. deps = gcc
  407. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  408. description = Building C object $out
  409. #############################################
  410. # Rule for linking C static library.
  411. rule C_STATIC_LIBRARY_LINKER____idf_newlib_
  412. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  413. description = Linking C static library $TARGET_FILE
  414. restat = $RESTAT
  415. #############################################
  416. # Rule for compiling C files.
  417. rule C_COMPILER____idf_pthread_unscanned_
  418. depfile = $DEP_FILE
  419. deps = gcc
  420. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  421. description = Building C object $out
  422. #############################################
  423. # Rule for linking C static library.
  424. rule C_STATIC_LIBRARY_LINKER____idf_pthread_
  425. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  426. description = Linking C static library $TARGET_FILE
  427. restat = $RESTAT
  428. #############################################
  429. # Rule for compiling CXX files.
  430. rule CXX_COMPILER____idf_cxx_unscanned_
  431. depfile = $DEP_FILE
  432. deps = gcc
  433. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  434. description = Building CXX object $out
  435. #############################################
  436. # Rule for linking C static library.
  437. rule C_STATIC_LIBRARY_LINKER____idf_cxx_
  438. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  439. description = Linking C static library $TARGET_FILE
  440. restat = $RESTAT
  441. #############################################
  442. # Rule for compiling C files.
  443. rule C_COMPILER____idf_esp_timer_unscanned_
  444. depfile = $DEP_FILE
  445. deps = gcc
  446. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  447. description = Building C object $out
  448. #############################################
  449. # Rule for linking C static library.
  450. rule C_STATIC_LIBRARY_LINKER____idf_esp_timer_
  451. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  452. description = Linking C static library $TARGET_FILE
  453. restat = $RESTAT
  454. #############################################
  455. # Rule for compiling C files.
  456. rule C_COMPILER____idf_esp_driver_gptimer_unscanned_
  457. depfile = $DEP_FILE
  458. deps = gcc
  459. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  460. description = Building C object $out
  461. #############################################
  462. # Rule for linking C static library.
  463. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_gptimer_
  464. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  465. description = Linking C static library $TARGET_FILE
  466. restat = $RESTAT
  467. #############################################
  468. # Rule for compiling C files.
  469. rule C_COMPILER____idf_esp_ringbuf_unscanned_
  470. depfile = $DEP_FILE
  471. deps = gcc
  472. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  473. description = Building C object $out
  474. #############################################
  475. # Rule for linking C static library.
  476. rule C_STATIC_LIBRARY_LINKER____idf_esp_ringbuf_
  477. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  478. description = Linking C static library $TARGET_FILE
  479. restat = $RESTAT
  480. #############################################
  481. # Rule for compiling C files.
  482. rule C_COMPILER____idf_esp_driver_uart_unscanned_
  483. depfile = $DEP_FILE
  484. deps = gcc
  485. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  486. description = Building C object $out
  487. #############################################
  488. # Rule for linking C static library.
  489. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_uart_
  490. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  491. description = Linking C static library $TARGET_FILE
  492. restat = $RESTAT
  493. #############################################
  494. # Rule for compiling C files.
  495. rule C_COMPILER____idf_app_trace_unscanned_
  496. depfile = $DEP_FILE
  497. deps = gcc
  498. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  499. description = Building C object $out
  500. #############################################
  501. # Rule for linking C static library.
  502. rule C_STATIC_LIBRARY_LINKER____idf_app_trace_
  503. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  504. description = Linking C static library $TARGET_FILE
  505. restat = $RESTAT
  506. #############################################
  507. # Rule for compiling C files.
  508. rule C_COMPILER____idf_esp_event_unscanned_
  509. depfile = $DEP_FILE
  510. deps = gcc
  511. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  512. description = Building C object $out
  513. #############################################
  514. # Rule for linking C static library.
  515. rule C_STATIC_LIBRARY_LINKER____idf_esp_event_
  516. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  517. description = Linking C static library $TARGET_FILE
  518. restat = $RESTAT
  519. #############################################
  520. # Rule for compiling CXX files.
  521. rule CXX_COMPILER____idf_nvs_flash_unscanned_
  522. depfile = $DEP_FILE
  523. deps = gcc
  524. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  525. description = Building CXX object $out
  526. #############################################
  527. # Rule for linking C static library.
  528. rule C_STATIC_LIBRARY_LINKER____idf_nvs_flash_
  529. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  530. description = Linking C static library $TARGET_FILE
  531. restat = $RESTAT
  532. #############################################
  533. # Rule for compiling C files.
  534. rule C_COMPILER____idf_esp_driver_pcnt_unscanned_
  535. depfile = $DEP_FILE
  536. deps = gcc
  537. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  538. description = Building C object $out
  539. #############################################
  540. # Rule for linking C static library.
  541. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_pcnt_
  542. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  543. description = Linking C static library $TARGET_FILE
  544. restat = $RESTAT
  545. #############################################
  546. # Rule for compiling C files.
  547. rule C_COMPILER____idf_esp_driver_spi_unscanned_
  548. depfile = $DEP_FILE
  549. deps = gcc
  550. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  551. description = Building C object $out
  552. #############################################
  553. # Rule for linking C static library.
  554. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_spi_
  555. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  556. description = Linking C static library $TARGET_FILE
  557. restat = $RESTAT
  558. #############################################
  559. # Rule for compiling C files.
  560. rule C_COMPILER____idf_esp_driver_mcpwm_unscanned_
  561. depfile = $DEP_FILE
  562. deps = gcc
  563. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  564. description = Building C object $out
  565. #############################################
  566. # Rule for linking C static library.
  567. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_mcpwm_
  568. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  569. description = Linking C static library $TARGET_FILE
  570. restat = $RESTAT
  571. #############################################
  572. # Rule for compiling C files.
  573. rule C_COMPILER____idf_esp_driver_i2s_unscanned_
  574. depfile = $DEP_FILE
  575. deps = gcc
  576. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  577. description = Building C object $out
  578. #############################################
  579. # Rule for linking C static library.
  580. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2s_
  581. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  582. description = Linking C static library $TARGET_FILE
  583. restat = $RESTAT
  584. #############################################
  585. # Rule for compiling C files.
  586. rule C_COMPILER____idf_sdmmc_unscanned_
  587. depfile = $DEP_FILE
  588. deps = gcc
  589. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  590. description = Building C object $out
  591. #############################################
  592. # Rule for linking C static library.
  593. rule C_STATIC_LIBRARY_LINKER____idf_sdmmc_
  594. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  595. description = Linking C static library $TARGET_FILE
  596. restat = $RESTAT
  597. #############################################
  598. # Rule for compiling C files.
  599. rule C_COMPILER____idf_esp_driver_sdmmc_unscanned_
  600. depfile = $DEP_FILE
  601. deps = gcc
  602. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  603. description = Building C object $out
  604. #############################################
  605. # Rule for linking C static library.
  606. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdmmc_
  607. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  608. description = Linking C static library $TARGET_FILE
  609. restat = $RESTAT
  610. #############################################
  611. # Rule for compiling C files.
  612. rule C_COMPILER____idf_esp_driver_sdspi_unscanned_
  613. depfile = $DEP_FILE
  614. deps = gcc
  615. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  616. description = Building C object $out
  617. #############################################
  618. # Rule for linking C static library.
  619. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdspi_
  620. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  621. description = Linking C static library $TARGET_FILE
  622. restat = $RESTAT
  623. #############################################
  624. # Rule for compiling C files.
  625. rule C_COMPILER____idf_esp_driver_rmt_unscanned_
  626. depfile = $DEP_FILE
  627. deps = gcc
  628. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  629. description = Building C object $out
  630. #############################################
  631. # Rule for linking C static library.
  632. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_rmt_
  633. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  634. description = Linking C static library $TARGET_FILE
  635. restat = $RESTAT
  636. #############################################
  637. # Rule for compiling C files.
  638. rule C_COMPILER____idf_esp_driver_tsens_unscanned_
  639. depfile = $DEP_FILE
  640. deps = gcc
  641. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  642. description = Building C object $out
  643. #############################################
  644. # Rule for linking C static library.
  645. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_tsens_
  646. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  647. description = Linking C static library $TARGET_FILE
  648. restat = $RESTAT
  649. #############################################
  650. # Rule for compiling C files.
  651. rule C_COMPILER____idf_esp_driver_sdm_unscanned_
  652. depfile = $DEP_FILE
  653. deps = gcc
  654. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  655. description = Building C object $out
  656. #############################################
  657. # Rule for linking C static library.
  658. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdm_
  659. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  660. description = Linking C static library $TARGET_FILE
  661. restat = $RESTAT
  662. #############################################
  663. # Rule for compiling C files.
  664. rule C_COMPILER____idf_esp_driver_i2c_unscanned_
  665. depfile = $DEP_FILE
  666. deps = gcc
  667. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  668. description = Building C object $out
  669. #############################################
  670. # Rule for linking C static library.
  671. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2c_
  672. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  673. description = Linking C static library $TARGET_FILE
  674. restat = $RESTAT
  675. #############################################
  676. # Rule for compiling C files.
  677. rule C_COMPILER____idf_esp_driver_ledc_unscanned_
  678. depfile = $DEP_FILE
  679. deps = gcc
  680. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  681. description = Building C object $out
  682. #############################################
  683. # Rule for linking C static library.
  684. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_ledc_
  685. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  686. description = Linking C static library $TARGET_FILE
  687. restat = $RESTAT
  688. #############################################
  689. # Rule for compiling C files.
  690. rule C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_
  691. depfile = $DEP_FILE
  692. deps = gcc
  693. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  694. description = Building C object $out
  695. #############################################
  696. # Rule for linking C static library.
  697. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_usb_serial_jtag_
  698. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  699. description = Linking C static library $TARGET_FILE
  700. restat = $RESTAT
  701. #############################################
  702. # Rule for compiling C files.
  703. rule C_COMPILER____idf_driver_unscanned_
  704. depfile = $DEP_FILE
  705. deps = gcc
  706. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  707. description = Building C object $out
  708. #############################################
  709. # Rule for linking C static library.
  710. rule C_STATIC_LIBRARY_LINKER____idf_driver_
  711. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  712. description = Linking C static library $TARGET_FILE
  713. restat = $RESTAT
  714. #############################################
  715. # Rule for compiling C files.
  716. rule C_COMPILER____idf_esp_phy_unscanned_
  717. depfile = $DEP_FILE
  718. deps = gcc
  719. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  720. description = Building C object $out
  721. #############################################
  722. # Rule for linking C static library.
  723. rule C_STATIC_LIBRARY_LINKER____idf_esp_phy_
  724. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  725. description = Linking C static library $TARGET_FILE
  726. restat = $RESTAT
  727. #############################################
  728. # Rule for compiling C files.
  729. rule C_COMPILER____idf_esp_vfs_console_unscanned_
  730. depfile = $DEP_FILE
  731. deps = gcc
  732. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  733. description = Building C object $out
  734. #############################################
  735. # Rule for linking C static library.
  736. rule C_STATIC_LIBRARY_LINKER____idf_esp_vfs_console_
  737. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  738. description = Linking C static library $TARGET_FILE
  739. restat = $RESTAT
  740. #############################################
  741. # Rule for compiling C files.
  742. rule C_COMPILER____idf_vfs_unscanned_
  743. depfile = $DEP_FILE
  744. deps = gcc
  745. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  746. description = Building C object $out
  747. #############################################
  748. # Rule for linking C static library.
  749. rule C_STATIC_LIBRARY_LINKER____idf_vfs_
  750. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  751. description = Linking C static library $TARGET_FILE
  752. restat = $RESTAT
  753. #############################################
  754. # Rule for compiling C files.
  755. rule C_COMPILER____idf_lwip_unscanned_
  756. depfile = $DEP_FILE
  757. deps = gcc
  758. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  759. description = Building C object $out
  760. #############################################
  761. # Rule for linking C static library.
  762. rule C_STATIC_LIBRARY_LINKER____idf_lwip_
  763. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  764. description = Linking C static library $TARGET_FILE
  765. restat = $RESTAT
  766. #############################################
  767. # Rule for compiling C files.
  768. rule C_COMPILER____idf_esp_netif_unscanned_
  769. depfile = $DEP_FILE
  770. deps = gcc
  771. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  772. description = Building C object $out
  773. #############################################
  774. # Rule for linking C static library.
  775. rule C_STATIC_LIBRARY_LINKER____idf_esp_netif_
  776. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  777. description = Linking C static library $TARGET_FILE
  778. restat = $RESTAT
  779. #############################################
  780. # Rule for compiling C files.
  781. rule C_COMPILER____idf_wpa_supplicant_unscanned_
  782. depfile = $DEP_FILE
  783. deps = gcc
  784. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  785. description = Building C object $out
  786. #############################################
  787. # Rule for linking C static library.
  788. rule C_STATIC_LIBRARY_LINKER____idf_wpa_supplicant_
  789. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  790. description = Linking C static library $TARGET_FILE
  791. restat = $RESTAT
  792. #############################################
  793. # Rule for compiling C files.
  794. rule C_COMPILER____idf_esp_coex_unscanned_
  795. depfile = $DEP_FILE
  796. deps = gcc
  797. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  798. description = Building C object $out
  799. #############################################
  800. # Rule for linking C static library.
  801. rule C_STATIC_LIBRARY_LINKER____idf_esp_coex_
  802. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  803. description = Linking C static library $TARGET_FILE
  804. restat = $RESTAT
  805. #############################################
  806. # Rule for compiling C files.
  807. rule C_COMPILER____idf_esp_wifi_unscanned_
  808. depfile = $DEP_FILE
  809. deps = gcc
  810. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  811. description = Building C object $out
  812. #############################################
  813. # Rule for linking C static library.
  814. rule C_STATIC_LIBRARY_LINKER____idf_esp_wifi_
  815. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  816. description = Linking C static library $TARGET_FILE
  817. restat = $RESTAT
  818. #############################################
  819. # Rule for compiling ASM files.
  820. rule ASM_COMPILER____idf_esp_gdbstub_unscanned_
  821. depfile = $DEP_FILE
  822. deps = gcc
  823. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  824. description = Building ASM object $out
  825. #############################################
  826. # Rule for compiling C files.
  827. rule C_COMPILER____idf_esp_gdbstub_unscanned_
  828. depfile = $DEP_FILE
  829. deps = gcc
  830. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  831. description = Building C object $out
  832. #############################################
  833. # Rule for linking C static library.
  834. rule C_STATIC_LIBRARY_LINKER____idf_esp_gdbstub_
  835. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  836. description = Linking C static library $TARGET_FILE
  837. restat = $RESTAT
  838. #############################################
  839. # Rule for compiling C files.
  840. rule C_COMPILER____idf_unity_unscanned_
  841. depfile = $DEP_FILE
  842. deps = gcc
  843. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  844. description = Building C object $out
  845. #############################################
  846. # Rule for linking C static library.
  847. rule C_STATIC_LIBRARY_LINKER____idf_unity_
  848. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  849. description = Linking C static library $TARGET_FILE
  850. restat = $RESTAT
  851. #############################################
  852. # Rule for compiling C files.
  853. rule C_COMPILER____idf_cmock_unscanned_
  854. depfile = $DEP_FILE
  855. deps = gcc
  856. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  857. description = Building C object $out
  858. #############################################
  859. # Rule for linking C static library.
  860. rule C_STATIC_LIBRARY_LINKER____idf_cmock_
  861. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  862. description = Linking C static library $TARGET_FILE
  863. restat = $RESTAT
  864. #############################################
  865. # Rule for compiling C files.
  866. rule C_COMPILER____idf_console_unscanned_
  867. depfile = $DEP_FILE
  868. deps = gcc
  869. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  870. description = Building C object $out
  871. #############################################
  872. # Rule for linking C static library.
  873. rule C_STATIC_LIBRARY_LINKER____idf_console_
  874. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  875. description = Linking C static library $TARGET_FILE
  876. restat = $RESTAT
  877. #############################################
  878. # Rule for compiling C files.
  879. rule C_COMPILER____idf_http_parser_unscanned_
  880. depfile = $DEP_FILE
  881. deps = gcc
  882. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  883. description = Building C object $out
  884. #############################################
  885. # Rule for linking C static library.
  886. rule C_STATIC_LIBRARY_LINKER____idf_http_parser_
  887. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  888. description = Linking C static library $TARGET_FILE
  889. restat = $RESTAT
  890. #############################################
  891. # Rule for compiling C files.
  892. rule C_COMPILER____idf_esp-tls_unscanned_
  893. depfile = $DEP_FILE
  894. deps = gcc
  895. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  896. description = Building C object $out
  897. #############################################
  898. # Rule for linking C static library.
  899. rule C_STATIC_LIBRARY_LINKER____idf_esp-tls_
  900. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  901. description = Linking C static library $TARGET_FILE
  902. restat = $RESTAT
  903. #############################################
  904. # Rule for compiling C files.
  905. rule C_COMPILER____idf_esp_adc_unscanned_
  906. depfile = $DEP_FILE
  907. deps = gcc
  908. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  909. description = Building C object $out
  910. #############################################
  911. # Rule for linking C static library.
  912. rule C_STATIC_LIBRARY_LINKER____idf_esp_adc_
  913. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  914. description = Linking C static library $TARGET_FILE
  915. restat = $RESTAT
  916. #############################################
  917. # Rule for compiling C files.
  918. rule C_COMPILER____idf_esp_driver_cam_unscanned_
  919. depfile = $DEP_FILE
  920. deps = gcc
  921. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  922. description = Building C object $out
  923. #############################################
  924. # Rule for linking C static library.
  925. rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_cam_
  926. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  927. description = Linking C static library $TARGET_FILE
  928. restat = $RESTAT
  929. #############################################
  930. # Rule for compiling C files.
  931. rule C_COMPILER____idf_esp_eth_unscanned_
  932. depfile = $DEP_FILE
  933. deps = gcc
  934. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  935. description = Building C object $out
  936. #############################################
  937. # Rule for linking C static library.
  938. rule C_STATIC_LIBRARY_LINKER____idf_esp_eth_
  939. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  940. description = Linking C static library $TARGET_FILE
  941. restat = $RESTAT
  942. #############################################
  943. # Rule for compiling C files.
  944. rule C_COMPILER____idf_esp_hid_unscanned_
  945. depfile = $DEP_FILE
  946. deps = gcc
  947. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  948. description = Building C object $out
  949. #############################################
  950. # Rule for linking C static library.
  951. rule C_STATIC_LIBRARY_LINKER____idf_esp_hid_
  952. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  953. description = Linking C static library $TARGET_FILE
  954. restat = $RESTAT
  955. #############################################
  956. # Rule for compiling C files.
  957. rule C_COMPILER____idf_tcp_transport_unscanned_
  958. depfile = $DEP_FILE
  959. deps = gcc
  960. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  961. description = Building C object $out
  962. #############################################
  963. # Rule for linking C static library.
  964. rule C_STATIC_LIBRARY_LINKER____idf_tcp_transport_
  965. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  966. description = Linking C static library $TARGET_FILE
  967. restat = $RESTAT
  968. #############################################
  969. # Rule for compiling C files.
  970. rule C_COMPILER____idf_esp_http_client_unscanned_
  971. depfile = $DEP_FILE
  972. deps = gcc
  973. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  974. description = Building C object $out
  975. #############################################
  976. # Rule for linking C static library.
  977. rule C_STATIC_LIBRARY_LINKER____idf_esp_http_client_
  978. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  979. description = Linking C static library $TARGET_FILE
  980. restat = $RESTAT
  981. #############################################
  982. # Rule for compiling C files.
  983. rule C_COMPILER____idf_esp_http_server_unscanned_
  984. depfile = $DEP_FILE
  985. deps = gcc
  986. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  987. description = Building C object $out
  988. #############################################
  989. # Rule for linking C static library.
  990. rule C_STATIC_LIBRARY_LINKER____idf_esp_http_server_
  991. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  992. description = Linking C static library $TARGET_FILE
  993. restat = $RESTAT
  994. #############################################
  995. # Rule for compiling C files.
  996. rule C_COMPILER____idf_esp_https_ota_unscanned_
  997. depfile = $DEP_FILE
  998. deps = gcc
  999. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1000. description = Building C object $out
  1001. #############################################
  1002. # Rule for linking C static library.
  1003. rule C_STATIC_LIBRARY_LINKER____idf_esp_https_ota_
  1004. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1005. description = Linking C static library $TARGET_FILE
  1006. restat = $RESTAT
  1007. #############################################
  1008. # Rule for compiling C files.
  1009. rule C_COMPILER____idf_esp_https_server_unscanned_
  1010. depfile = $DEP_FILE
  1011. deps = gcc
  1012. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1013. description = Building C object $out
  1014. #############################################
  1015. # Rule for linking C static library.
  1016. rule C_STATIC_LIBRARY_LINKER____idf_esp_https_server_
  1017. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1018. description = Linking C static library $TARGET_FILE
  1019. restat = $RESTAT
  1020. #############################################
  1021. # Rule for compiling C files.
  1022. rule C_COMPILER____idf_esp_psram_unscanned_
  1023. depfile = $DEP_FILE
  1024. deps = gcc
  1025. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1026. description = Building C object $out
  1027. #############################################
  1028. # Rule for linking C static library.
  1029. rule C_STATIC_LIBRARY_LINKER____idf_esp_psram_
  1030. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1031. description = Linking C static library $TARGET_FILE
  1032. restat = $RESTAT
  1033. #############################################
  1034. # Rule for compiling C files.
  1035. rule C_COMPILER____idf_esp_lcd_unscanned_
  1036. depfile = $DEP_FILE
  1037. deps = gcc
  1038. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1039. description = Building C object $out
  1040. #############################################
  1041. # Rule for linking C static library.
  1042. rule C_STATIC_LIBRARY_LINKER____idf_esp_lcd_
  1043. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1044. description = Linking C static library $TARGET_FILE
  1045. restat = $RESTAT
  1046. #############################################
  1047. # Rule for compiling C files.
  1048. rule C_COMPILER____idf_protobuf-c_unscanned_
  1049. depfile = $DEP_FILE
  1050. deps = gcc
  1051. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1052. description = Building C object $out
  1053. #############################################
  1054. # Rule for linking C static library.
  1055. rule C_STATIC_LIBRARY_LINKER____idf_protobuf-c_
  1056. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1057. description = Linking C static library $TARGET_FILE
  1058. restat = $RESTAT
  1059. #############################################
  1060. # Rule for compiling C files.
  1061. rule C_COMPILER____idf_protocomm_unscanned_
  1062. depfile = $DEP_FILE
  1063. deps = gcc
  1064. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1065. description = Building C object $out
  1066. #############################################
  1067. # Rule for linking C static library.
  1068. rule C_STATIC_LIBRARY_LINKER____idf_protocomm_
  1069. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1070. description = Linking C static library $TARGET_FILE
  1071. restat = $RESTAT
  1072. #############################################
  1073. # Rule for compiling C files.
  1074. rule C_COMPILER____idf_esp_local_ctrl_unscanned_
  1075. depfile = $DEP_FILE
  1076. deps = gcc
  1077. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1078. description = Building C object $out
  1079. #############################################
  1080. # Rule for linking C static library.
  1081. rule C_STATIC_LIBRARY_LINKER____idf_esp_local_ctrl_
  1082. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1083. description = Linking C static library $TARGET_FILE
  1084. restat = $RESTAT
  1085. #############################################
  1086. # Rule for compiling C files.
  1087. rule C_COMPILER____idf_espcoredump_unscanned_
  1088. depfile = $DEP_FILE
  1089. deps = gcc
  1090. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1091. description = Building C object $out
  1092. #############################################
  1093. # Rule for linking C static library.
  1094. rule C_STATIC_LIBRARY_LINKER____idf_espcoredump_
  1095. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1096. description = Linking C static library $TARGET_FILE
  1097. restat = $RESTAT
  1098. #############################################
  1099. # Rule for compiling CXX files.
  1100. rule CXX_COMPILER____idf_wear_levelling_unscanned_
  1101. depfile = $DEP_FILE
  1102. deps = gcc
  1103. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1104. description = Building CXX object $out
  1105. #############################################
  1106. # Rule for linking C static library.
  1107. rule C_STATIC_LIBRARY_LINKER____idf_wear_levelling_
  1108. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1109. description = Linking C static library $TARGET_FILE
  1110. restat = $RESTAT
  1111. #############################################
  1112. # Rule for compiling C files.
  1113. rule C_COMPILER____idf_fatfs_unscanned_
  1114. depfile = $DEP_FILE
  1115. deps = gcc
  1116. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1117. description = Building C object $out
  1118. #############################################
  1119. # Rule for linking C static library.
  1120. rule C_STATIC_LIBRARY_LINKER____idf_fatfs_
  1121. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1122. description = Linking C static library $TARGET_FILE
  1123. restat = $RESTAT
  1124. #############################################
  1125. # Rule for compiling C files.
  1126. rule C_COMPILER____idf_json_unscanned_
  1127. depfile = $DEP_FILE
  1128. deps = gcc
  1129. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1130. description = Building C object $out
  1131. #############################################
  1132. # Rule for linking C static library.
  1133. rule C_STATIC_LIBRARY_LINKER____idf_json_
  1134. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1135. description = Linking C static library $TARGET_FILE
  1136. restat = $RESTAT
  1137. #############################################
  1138. # Rule for compiling C files.
  1139. rule C_COMPILER____idf_mqtt_unscanned_
  1140. depfile = $DEP_FILE
  1141. deps = gcc
  1142. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1143. description = Building C object $out
  1144. #############################################
  1145. # Rule for linking C static library.
  1146. rule C_STATIC_LIBRARY_LINKER____idf_mqtt_
  1147. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1148. description = Linking C static library $TARGET_FILE
  1149. restat = $RESTAT
  1150. #############################################
  1151. # Rule for compiling C files.
  1152. rule C_COMPILER____idf_nvs_sec_provider_unscanned_
  1153. depfile = $DEP_FILE
  1154. deps = gcc
  1155. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1156. description = Building C object $out
  1157. #############################################
  1158. # Rule for linking C static library.
  1159. rule C_STATIC_LIBRARY_LINKER____idf_nvs_sec_provider_
  1160. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1161. description = Linking C static library $TARGET_FILE
  1162. restat = $RESTAT
  1163. #############################################
  1164. # Rule for compiling C files.
  1165. rule C_COMPILER____idf_perfmon_unscanned_
  1166. depfile = $DEP_FILE
  1167. deps = gcc
  1168. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1169. description = Building C object $out
  1170. #############################################
  1171. # Rule for linking C static library.
  1172. rule C_STATIC_LIBRARY_LINKER____idf_perfmon_
  1173. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1174. description = Linking C static library $TARGET_FILE
  1175. restat = $RESTAT
  1176. #############################################
  1177. # Rule for compiling C files.
  1178. rule C_COMPILER____idf_spiffs_unscanned_
  1179. depfile = $DEP_FILE
  1180. deps = gcc
  1181. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1182. description = Building C object $out
  1183. #############################################
  1184. # Rule for linking C static library.
  1185. rule C_STATIC_LIBRARY_LINKER____idf_spiffs_
  1186. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1187. description = Linking C static library $TARGET_FILE
  1188. restat = $RESTAT
  1189. #############################################
  1190. # Rule for compiling C files.
  1191. rule C_COMPILER____idf_touch_element_unscanned_
  1192. depfile = $DEP_FILE
  1193. deps = gcc
  1194. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1195. description = Building C object $out
  1196. #############################################
  1197. # Rule for linking C static library.
  1198. rule C_STATIC_LIBRARY_LINKER____idf_touch_element_
  1199. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1200. description = Linking C static library $TARGET_FILE
  1201. restat = $RESTAT
  1202. #############################################
  1203. # Rule for compiling C files.
  1204. rule C_COMPILER____idf_usb_unscanned_
  1205. depfile = $DEP_FILE
  1206. deps = gcc
  1207. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1208. description = Building C object $out
  1209. #############################################
  1210. # Rule for linking C static library.
  1211. rule C_STATIC_LIBRARY_LINKER____idf_usb_
  1212. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1213. description = Linking C static library $TARGET_FILE
  1214. restat = $RESTAT
  1215. #############################################
  1216. # Rule for compiling C files.
  1217. rule C_COMPILER____idf_wifi_provisioning_unscanned_
  1218. depfile = $DEP_FILE
  1219. deps = gcc
  1220. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1221. description = Building C object $out
  1222. #############################################
  1223. # Rule for linking C static library.
  1224. rule C_STATIC_LIBRARY_LINKER____idf_wifi_provisioning_
  1225. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1226. description = Linking C static library $TARGET_FILE
  1227. restat = $RESTAT
  1228. #############################################
  1229. # Rule for compiling C files.
  1230. rule C_COMPILER____idf_espressif__cjson_unscanned_
  1231. depfile = $DEP_FILE
  1232. deps = gcc
  1233. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1234. description = Building C object $out
  1235. #############################################
  1236. # Rule for linking C static library.
  1237. rule C_STATIC_LIBRARY_LINKER____idf_espressif__cjson_
  1238. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1239. description = Linking C static library $TARGET_FILE
  1240. restat = $RESTAT
  1241. #############################################
  1242. # Rule for compiling ASM files.
  1243. rule ASM_COMPILER____idf_espressif__dl_fft_unscanned_
  1244. depfile = $DEP_FILE
  1245. deps = gcc
  1246. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1247. description = Building ASM object $out
  1248. #############################################
  1249. # Rule for compiling C files.
  1250. rule C_COMPILER____idf_espressif__dl_fft_unscanned_
  1251. depfile = $DEP_FILE
  1252. deps = gcc
  1253. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1254. description = Building C object $out
  1255. #############################################
  1256. # Rule for linking C static library.
  1257. rule C_STATIC_LIBRARY_LINKER____idf_espressif__dl_fft_
  1258. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1259. description = Linking C static library $TARGET_FILE
  1260. restat = $RESTAT
  1261. #############################################
  1262. # Rule for compiling ASM files.
  1263. rule ASM_COMPILER____idf_espressif__esp-dl_unscanned_
  1264. depfile = $DEP_FILE
  1265. deps = gcc
  1266. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1267. description = Building ASM object $out
  1268. #############################################
  1269. # Rule for compiling CXX files.
  1270. rule CXX_COMPILER____idf_espressif__esp-dl_unscanned_
  1271. depfile = $DEP_FILE
  1272. deps = gcc
  1273. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1274. description = Building CXX object $out
  1275. #############################################
  1276. # Rule for linking C static library.
  1277. rule C_STATIC_LIBRARY_LINKER____idf_espressif__esp-dl_
  1278. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1279. description = Linking C static library $TARGET_FILE
  1280. restat = $RESTAT
  1281. #############################################
  1282. # Rule for compiling ASM files.
  1283. rule ASM_COMPILER____idf_espressif__esp-dsp_unscanned_
  1284. depfile = $DEP_FILE
  1285. deps = gcc
  1286. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1287. description = Building ASM object $out
  1288. #############################################
  1289. # Rule for compiling C files.
  1290. rule C_COMPILER____idf_espressif__esp-dsp_unscanned_
  1291. depfile = $DEP_FILE
  1292. deps = gcc
  1293. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1294. description = Building C object $out
  1295. #############################################
  1296. # Rule for compiling CXX files.
  1297. rule CXX_COMPILER____idf_espressif__esp-dsp_unscanned_
  1298. depfile = $DEP_FILE
  1299. deps = gcc
  1300. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1301. description = Building CXX object $out
  1302. #############################################
  1303. # Rule for linking C static library.
  1304. rule C_STATIC_LIBRARY_LINKER____idf_espressif__esp-dsp_
  1305. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1306. description = Linking C static library $TARGET_FILE
  1307. restat = $RESTAT
  1308. #############################################
  1309. # Rule for compiling C files.
  1310. rule C_COMPILER____idf_espressif__esp-sr_unscanned_
  1311. depfile = $DEP_FILE
  1312. deps = gcc
  1313. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1314. description = Building C object $out
  1315. #############################################
  1316. # Rule for linking C static library.
  1317. rule C_STATIC_LIBRARY_LINKER____idf_espressif__esp-sr_
  1318. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1319. description = Linking C static library $TARGET_FILE
  1320. restat = $RESTAT
  1321. #############################################
  1322. # Rule for compiling C files.
  1323. rule C_COMPILER____idf_espressif__esp_codec_dev_unscanned_
  1324. depfile = $DEP_FILE
  1325. deps = gcc
  1326. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1327. description = Building C object $out
  1328. #############################################
  1329. # Rule for linking C static library.
  1330. rule C_STATIC_LIBRARY_LINKER____idf_espressif__esp_codec_dev_
  1331. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1332. description = Linking C static library $TARGET_FILE
  1333. restat = $RESTAT
  1334. #############################################
  1335. # Rule for compiling C files.
  1336. rule C_COMPILER____idf_espressif__esp_io_expander_unscanned_
  1337. depfile = $DEP_FILE
  1338. deps = gcc
  1339. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1340. description = Building C object $out
  1341. #############################################
  1342. # Rule for linking C static library.
  1343. rule C_STATIC_LIBRARY_LINKER____idf_espressif__esp_io_expander_
  1344. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1345. description = Linking C static library $TARGET_FILE
  1346. restat = $RESTAT
  1347. #############################################
  1348. # Rule for compiling C files.
  1349. rule C_COMPILER____idf_espressif__esp_io_expander_tca95xx_16bit_unscanned_
  1350. depfile = $DEP_FILE
  1351. deps = gcc
  1352. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1353. description = Building C object $out
  1354. #############################################
  1355. # Rule for linking C static library.
  1356. rule C_STATIC_LIBRARY_LINKER____idf_espressif__esp_io_expander_tca95xx_16bit_
  1357. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1358. description = Linking C static library $TARGET_FILE
  1359. restat = $RESTAT
  1360. #############################################
  1361. # Rule for compiling C files.
  1362. rule C_COMPILER____idf_main_unscanned_
  1363. depfile = $DEP_FILE
  1364. deps = gcc
  1365. command = ${LAUNCHER}${CODE_CHECK}/root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
  1366. description = Building C object $out
  1367. #############################################
  1368. # Rule for linking C static library.
  1369. rule C_STATIC_LIBRARY_LINKER____idf_main_
  1370. command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /root/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20250707/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib $TARGET_FILE && $POST_BUILD
  1371. description = Linking C static library $TARGET_FILE
  1372. restat = $RESTAT
  1373. #############################################
  1374. # Rule for re-running cmake.
  1375. rule RERUN_CMAKE
  1376. command = /usr/bin/cmake --regenerate-during-build -S/2_way_tochie -B/2_way_tochie/build
  1377. description = Re-running CMake...
  1378. generator = 1
  1379. #############################################
  1380. # Rule for cleaning additional files.
  1381. rule CLEAN_ADDITIONAL
  1382. command = /usr/bin/cmake -DCONFIG=$CONFIG -P CMakeFiles/clean_additional.cmake
  1383. description = Cleaning additional files...
  1384. #############################################
  1385. # Rule for cleaning all built files.
  1386. rule CLEAN
  1387. command = /usr/bin/ninja $FILE_ARG -t clean $TARGETS
  1388. description = Cleaning all built files...
  1389. #############################################
  1390. # Rule for printing all primary targets available.
  1391. rule HELP
  1392. command = /usr/bin/ninja -t targets
  1393. description = All primary targets available: