Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 96f3ffb

Browse files
committedMay 9, 2024·
on-release: remove files unrelated to Nano ESP32
- RISCV toolchain - examples - libraries - SDK files
1 parent 1384d43 commit 96f3ffb

File tree

5 files changed

+23
-290
lines changed

5 files changed

+23
-290
lines changed
 

‎.github/scripts/on-release.sh

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ cp -f "$GITHUB_WORKSPACE/tools/platformio-build.py" "$PKG_DIR/tools/"
213213
echo "Cleaning up folders ..."
214214
find "$PKG_DIR" -name '*.DS_Store' -exec rm -f {} \;
215215
find "$PKG_DIR" -name '*.git*' -type f -delete
216+
find "$PKG_DIR" -name '.skip.esp32s3' -type f -exec bash -c 'echo rm -rf $(dirname "{}")' \; | tac | /bin/bash
216217

217218
##
218219
## TEMP WORKAROUND FOR RV32 LONG PATH ON WINDOWS
@@ -282,7 +283,7 @@ LIBS_PACKAGE_ZIP="$LIBS_PROJ_NAME-$RELEASE_TAG.zip"
282283

283284
# Get the libs package URL from the template
284285
LIBS_PACKAGE_SRC_ZIP="$OUTPUT_DIR/src-$LIBS_PROJ_NAME.zip"
285-
LIBS_PACKAGE_SRC_URL=`cat $PACKAGE_JSON_TEMPLATE | jq -r ".packages[0].tools[] | select(.name==\"$LIBS_PROJ_NAME\") | .systems[0].url"`
286+
LIBS_PACKAGE_SRC_URL=`cat $PACKAGE_JSON_TEMPLATE | jq -r ".packages[1].tools[] | select(.name==\"$LIBS_PROJ_NAME\") | .systems[0].url"`
286287

287288
# Download the libs package
288289
echo "Downloading the libs archive ..."
@@ -298,6 +299,7 @@ mv "$OUTPUT_DIR/$EXTRACTED_DIR" "$LIBS_PKG_DIR" || exit 1
298299
echo "Cleaning up folders ..."
299300
find "$LIBS_PKG_DIR" -name '*.DS_Store' -exec rm -f {} \;
300301
find "$LIBS_PKG_DIR" -name '*.git*' -type f -delete
302+
find "$LIBS_PKG_DIR" -mindepth 1 -maxdepth 1 -type d \! -name esp32s3 -exec rm -rf {} \;
301303

302304
# Compress package folder
303305
echo "Creating ZIP ..."
@@ -324,10 +326,10 @@ echo
324326

325327
# Construct JQ argument with libs package data
326328
libs_jq_arg="\
327-
(.packages[0].tools[] | select(.name==\"$LIBS_PROJ_NAME\")).systems[].url = \"$LIBS_PACKAGE_URL\" |\
328-
(.packages[0].tools[] | select(.name==\"$LIBS_PROJ_NAME\")).systems[].archiveFileName = \"$LIBS_PACKAGE_ZIP\" |\
329-
(.packages[0].tools[] | select(.name==\"$LIBS_PROJ_NAME\")).systems[].size = \"$LIBS_PACKAGE_SIZE\" |\
330-
(.packages[0].tools[] | select(.name==\"$LIBS_PROJ_NAME\")).systems[].checksum = \"SHA-256:$LIBS_PACKAGE_SHA\""
329+
(.packages[1].tools[] | select(.name==\"$LIBS_PROJ_NAME\")).systems[].url = \"$LIBS_PACKAGE_URL\" |\
330+
(.packages[1].tools[] | select(.name==\"$LIBS_PROJ_NAME\")).systems[].archiveFileName = \"$LIBS_PACKAGE_ZIP\" |\
331+
(.packages[1].tools[] | select(.name==\"$LIBS_PROJ_NAME\")).systems[].size = \"$LIBS_PACKAGE_SIZE\" |\
332+
(.packages[1].tools[] | select(.name==\"$LIBS_PROJ_NAME\")).systems[].checksum = \"SHA-256:$LIBS_PACKAGE_SHA\""
331333

332334
# Update template values for the libs package and store it in the build folder
333335
cat "$PACKAGE_JSON_TEMPLATE" | jq "$libs_jq_arg" > "$OUTPUT_DIR/package-$LIBS_PROJ_NAME.json"
@@ -343,8 +345,8 @@ RVTC_VERSION=`date -d "$RVTC_VERSION" '+%y%m'`
343345
rvtc_jq_arg="\
344346
(.packages[0].platforms[0].toolsDependencies[] | select(.name==\"$RVTC_NAME\")).version = \"$RVTC_VERSION\" |\
345347
(.packages[0].platforms[0].toolsDependencies[] | select(.name==\"$RVTC_NAME\")).name = \"$RVTC_NEW_NAME\" |\
346-
(.packages[0].tools[] | select(.name==\"$RVTC_NAME\")).version = \"$RVTC_VERSION\" |\
347-
(.packages[0].tools[] | select(.name==\"$RVTC_NAME\")).name = \"$RVTC_NEW_NAME\""
348+
(.packages[1].tools[] | select(.name==\"$RVTC_NAME\")).version = \"$RVTC_VERSION\" |\
349+
(.packages[1].tools[] | select(.name==\"$RVTC_NAME\")).name = \"$RVTC_NEW_NAME\""
348350
cat "$PACKAGE_JSON_TEMPLATE" | jq "$rvtc_jq_arg" > "$OUTPUT_DIR/package-$LIBS_PROJ_NAME-rvfix.json"
349351
PACKAGE_JSON_TEMPLATE="$OUTPUT_DIR/package-$LIBS_PROJ_NAME-rvfix.json"
350352

‎libraries/BluetoothSerial/.skip.esp32s3

Whitespace-only changes.

‎libraries/Ethernet/.skip.esp32s3

Whitespace-only changes.

‎libraries/RainMaker/.skip.esp32s3

Whitespace-only changes.

‎package/package_esp32_index.template.json

Lines changed: 14 additions & 283 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"packages": [
33
{
4-
"name": "esp32",
4+
"name": "arduino",
55
"maintainer": "Espressif Systems",
66
"websiteURL": "https://github.com/espressif/arduino-esp32",
77
"email": "hristo@espressif.com",
@@ -10,10 +10,10 @@
1010
},
1111
"platforms": [
1212
{
13-
"name": "esp32",
13+
"name": "Arduino ESP32 Boards",
1414
"architecture": "esp32",
1515
"version": "",
16-
"category": "ESP32",
16+
"category": "Arduino",
1717
"url": "",
1818
"archiveFileName": "",
1919
"checksum": "",
@@ -22,18 +22,6 @@
2222
"online": ""
2323
},
2424
"boards": [
25-
{
26-
"name": "ESP32 Dev Board"
27-
},
28-
{
29-
"name": "ESP32-S2 Dev Board"
30-
},
31-
{
32-
"name": "ESP32-S3 Dev Board"
33-
},
34-
{
35-
"name": "ESP32-C3 Dev Board"
36-
},
3725
{
3826
"name": "Arduino Nano ESP32"
3927
}
@@ -44,16 +32,6 @@
4432
"name": "esp32-arduino-libs",
4533
"version": "idf-release_v5.1-3662303f31"
4634
},
47-
{
48-
"packager": "esp32",
49-
"name": "xtensa-esp32-elf-gcc",
50-
"version": "esp-12.2.0_20230208"
51-
},
52-
{
53-
"packager": "esp32",
54-
"name": "xtensa-esp32s2-elf-gcc",
55-
"version": "esp-12.2.0_20230208"
56-
},
5735
{
5836
"packager": "esp32",
5937
"name": "xtensa-esp32s3-elf-gcc",
@@ -64,16 +42,6 @@
6442
"name": "xtensa-esp-elf-gdb",
6543
"version": "12.1_20231023"
6644
},
67-
{
68-
"packager": "esp32",
69-
"name": "riscv32-esp-elf-gcc",
70-
"version": "esp-12.2.0_20230208"
71-
},
72-
{
73-
"packager": "esp32",
74-
"name": "riscv32-esp-elf-gdb",
75-
"version": "12.1_20231023"
76-
},
7745
{
7846
"packager": "esp32",
7947
"name": "openocd-esp32",
@@ -102,6 +70,17 @@
10270
]
10371
}
10472
],
73+
"tools": []
74+
},
75+
{
76+
"name": "esp32",
77+
"maintainer": "Espressif Systems",
78+
"websiteURL": "https://github.com/espressif/arduino-esp32",
79+
"email": "hristo@espressif.com",
80+
"help": {
81+
"online": "http://esp32.com"
82+
},
83+
"platforms": [],
10584
"tools": [
10685
{
10786
"name": "esp32-arduino-libs",
@@ -165,130 +144,6 @@
165144
}
166145
]
167146
},
168-
{
169-
"name": "xtensa-esp32-elf-gcc",
170-
"version": "esp-12.2.0_20230208",
171-
"systems": [
172-
{
173-
"host": "x86_64-pc-linux-gnu",
174-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32-elf-12.2.0_20230208-x86_64-linux-gnu.tar.gz",
175-
"archiveFileName": "xtensa-esp32-elf-12.2.0_20230208-x86_64-linux-gnu.tar.gz",
176-
"checksum": "SHA-256:e8d35938385447cf9c34735fee2a3b2b61cca6be07db77a45856a1c2a347e423",
177-
"size": "111766903"
178-
},
179-
{
180-
"host": "aarch64-linux-gnu",
181-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32-elf-12.2.0_20230208-aarch64-linux-gnu.tar.gz",
182-
"archiveFileName": "xtensa-esp32-elf-12.2.0_20230208-aarch64-linux-gnu.tar.gz",
183-
"checksum": "SHA-256:569988acfc2673369f222037c64bac96990cee08cebeebc4f8860e0d984f8bd9",
184-
"size": "106473247"
185-
},
186-
{
187-
"host": "arm-linux-gnueabihf",
188-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32-elf-12.2.0_20230208-arm-linux-gnueabi.tar.gz",
189-
"archiveFileName": "xtensa-esp32-elf-12.2.0_20230208-arm-linux-gnueabi.tar.gz",
190-
"checksum": "SHA-256:6a844f16021e936cc9b87b203978356f57ab2144554f6f2a0f73ffa3d3d316c5",
191-
"size": "105576049"
192-
},
193-
{
194-
"host": "i686-pc-linux-gnu",
195-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32-elf-12.2.0_20230208-i686-linux-gnu.tar.gz",
196-
"archiveFileName": "xtensa-esp32-elf-12.2.0_20230208-i686-linux-gnu.tar.gz",
197-
"checksum": "SHA-256:743d6f03a89329bb09f9550d27fcab677f5cf06b4720793bbcef7883a932681d",
198-
"size": "114870843"
199-
},
200-
{
201-
"host": "x86_64-apple-darwin",
202-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32-elf-12.2.0_20230208-x86_64-apple-darwin.tar.gz",
203-
"archiveFileName": "xtensa-esp32-elf-12.2.0_20230208-x86_64-apple-darwin.tar.gz",
204-
"checksum": "SHA-256:4d32d764e984f3a570aacfb2f4957619540fb4629534d969b2e83997901334c3",
205-
"size": "119424029"
206-
},
207-
{
208-
"host": "arm64-apple-darwin",
209-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32-elf-12.2.0_20230208-aarch64-apple-darwin.tar.gz",
210-
"archiveFileName": "xtensa-esp32-elf-12.2.0_20230208-aarch64-apple-darwin.tar.gz",
211-
"checksum": "SHA-256:dc8fa7f4933bf5cb08e83bacce6160cc9dfe93d7aad1e8f92599bb81ff5b2e28",
212-
"size": "106136827"
213-
},
214-
{
215-
"host": "i686-mingw32",
216-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32-elf-12.2.0_20230208-i686-w64-mingw32.zip",
217-
"archiveFileName": "xtensa-esp32-elf-12.2.0_20230208-i686-w64-mingw32.zip",
218-
"checksum": "SHA-256:62bb6428d107ed3f44c212c77ecf24804b74c97327b0f0ad2029c656c6dbd6ee",
219-
"size": "130847086"
220-
},
221-
{
222-
"host": "x86_64-mingw32",
223-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32-elf-12.2.0_20230208-x86_64-w64-mingw32.zip",
224-
"archiveFileName": "xtensa-esp32-elf-12.2.0_20230208-x86_64-w64-mingw32.zip",
225-
"checksum": "SHA-256:8febfe4a6476efc69012390106c8c660a14418f025137b0513670c72124339cf",
226-
"size": "134985117"
227-
}
228-
]
229-
},
230-
{
231-
"name": "xtensa-esp32s2-elf-gcc",
232-
"version": "esp-12.2.0_20230208",
233-
"systems": [
234-
{
235-
"host": "x86_64-pc-linux-gnu",
236-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32s2-elf-12.2.0_20230208-x86_64-linux-gnu.tar.gz",
237-
"archiveFileName": "xtensa-esp32s2-elf-12.2.0_20230208-x86_64-linux-gnu.tar.gz",
238-
"checksum": "SHA-256:2ff838520a5003d2768b275f5bb5ead69dd2388c3b7cd9043cb59891ba43147f",
239-
"size": "112199211"
240-
},
241-
{
242-
"host": "aarch64-linux-gnu",
243-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32s2-elf-12.2.0_20230208-aarch64-linux-gnu.tar.gz",
244-
"archiveFileName": "xtensa-esp32s2-elf-12.2.0_20230208-aarch64-linux-gnu.tar.gz",
245-
"checksum": "SHA-256:6d79d5b14fc7129a9b8208d54e19b05dedb565f50f7a96264c9df84b06ad3be0",
246-
"size": "106953064"
247-
},
248-
{
249-
"host": "arm-linux-gnueabihf",
250-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32s2-elf-12.2.0_20230208-arm-linux-gnueabi.tar.gz",
251-
"archiveFileName": "xtensa-esp32s2-elf-12.2.0_20230208-arm-linux-gnueabi.tar.gz",
252-
"checksum": "SHA-256:e5bd03b6ad19179b015a93ada9992adc3610036ebf6aeb0835a09c9aadb50a14",
253-
"size": "106026829"
254-
},
255-
{
256-
"host": "i686-pc-linux-gnu",
257-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32s2-elf-12.2.0_20230208-i686-linux-gnu.tar.gz",
258-
"archiveFileName": "xtensa-esp32s2-elf-12.2.0_20230208-i686-linux-gnu.tar.gz",
259-
"checksum": "SHA-256:fb45943557b2d201bbb1bdc7514a1872f9bb96c2dfb48b95abdba281cc792f75",
260-
"size": "115288662"
261-
},
262-
{
263-
"host": "x86_64-apple-darwin",
264-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32s2-elf-12.2.0_20230208-x86_64-apple-darwin.tar.gz",
265-
"archiveFileName": "xtensa-esp32s2-elf-12.2.0_20230208-x86_64-apple-darwin.tar.gz",
266-
"checksum": "SHA-256:e965236cb80e45282d16f40184af183e013b63b177bd1884736c463eac636564",
267-
"size": "119711811"
268-
},
269-
{
270-
"host": "arm64-apple-darwin",
271-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32s2-elf-12.2.0_20230208-aarch64-apple-darwin.tar.gz",
272-
"archiveFileName": "xtensa-esp32s2-elf-12.2.0_20230208-aarch64-apple-darwin.tar.gz",
273-
"checksum": "SHA-256:78a55eec18650b21378d97494989ffe208748e0f49bb2b2d6756b264e1863919",
274-
"size": "106540817"
275-
},
276-
{
277-
"host": "i686-mingw32",
278-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32s2-elf-12.2.0_20230208-i686-w64-mingw32.zip",
279-
"archiveFileName": "xtensa-esp32s2-elf-12.2.0_20230208-i686-w64-mingw32.zip",
280-
"checksum": "SHA-256:1e6dac5162ab75f94b88c47ebeabb6600c652fb4f615ed07c1724d037c02fd19",
281-
"size": "131273859"
282-
},
283-
{
284-
"host": "x86_64-mingw32",
285-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32s2-elf-12.2.0_20230208-x86_64-w64-mingw32.zip",
286-
"archiveFileName": "xtensa-esp32s2-elf-12.2.0_20230208-x86_64-w64-mingw32.zip",
287-
"checksum": "SHA-256:8a785cc4e0838cebe404f82c0ead7a0f9ac5fabc660a742e33a41ddac6326cc1",
288-
"size": "135373049"
289-
}
290-
]
291-
},
292147
{
293148
"name": "xtensa-esp32s3-elf-gcc",
294149
"version": "esp-12.2.0_20230208",
@@ -413,130 +268,6 @@
413268
}
414269
]
415270
},
416-
{
417-
"name": "riscv32-esp-elf-gcc",
418-
"version": "esp-12.2.0_20230208",
419-
"systems": [
420-
{
421-
"host": "x86_64-pc-linux-gnu",
422-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/riscv32-esp-elf-12.2.0_20230208-x86_64-linux-gnu.tar.gz",
423-
"archiveFileName": "riscv32-esp-elf-12.2.0_20230208-x86_64-linux-gnu.tar.gz",
424-
"checksum": "SHA-256:1eb0d65990547ee9706b90406600cbc3638814d5feb7c1f7b44bb5416478a5bd",
425-
"size": "257615266"
426-
},
427-
{
428-
"host": "aarch64-linux-gnu",
429-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/riscv32-esp-elf-12.2.0_20230208-aarch64-linux-gnu.tar.gz",
430-
"archiveFileName": "riscv32-esp-elf-12.2.0_20230208-aarch64-linux-gnu.tar.gz",
431-
"checksum": "SHA-256:921fcdc170c7fe5d6a0a30470ed1875c8926d910c19739fc950c8d1836e4c1c5",
432-
"size": "253094184"
433-
},
434-
{
435-
"host": "arm-linux-gnueabihf",
436-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/riscv32-esp-elf-12.2.0_20230208-arm-linux-gnueabi.tar.gz",
437-
"archiveFileName": "riscv32-esp-elf-12.2.0_20230208-arm-linux-gnueabi.tar.gz",
438-
"checksum": "SHA-256:f66e06312b58251c2121c1b1df1102565708573b86b2a9fe0c03ea1b0e9a7511",
439-
"size": "252558021"
440-
},
441-
{
442-
"host": "i686-pc-linux-gnu",
443-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/riscv32-esp-elf-12.2.0_20230208-i686-linux-gnu.tar.gz",
444-
"archiveFileName": "riscv32-esp-elf-12.2.0_20230208-i686-linux-gnu.tar.gz",
445-
"checksum": "SHA-256:8abcac0331ef8973d1c705e77523364ebec7e98b37640d4a1d036912f3cbe946",
446-
"size": "261248375"
447-
},
448-
{
449-
"host": "x86_64-apple-darwin",
450-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/riscv32-esp-elf-12.2.0_20230208-x86_64-apple-darwin.tar.gz",
451-
"archiveFileName": "riscv32-esp-elf-12.2.0_20230208-x86_64-apple-darwin.tar.gz",
452-
"checksum": "SHA-256:76a334bc75a4e3891c222c84d7968817f2d0699d2976fc2a1658e56395283bec",
453-
"size": "268987133"
454-
},
455-
{
456-
"host": "arm64-apple-darwin",
457-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/riscv32-esp-elf-12.2.0_20230208-aarch64-apple-darwin.tar.gz",
458-
"archiveFileName": "riscv32-esp-elf-12.2.0_20230208-aarch64-apple-darwin.tar.gz",
459-
"checksum": "SHA-256:f30571945b257a10a26901bba3c5892e07c192aacf9ed6e8fcd11ca36ed827d2",
460-
"size": "252159713"
461-
},
462-
{
463-
"host": "i686-mingw32",
464-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/riscv32-esp-elf-12.2.0_20230208-i686-w64-mingw32.zip",
465-
"archiveFileName": "riscv32-esp-elf-12.2.0_20230208-i686-w64-mingw32.zip",
466-
"checksum": "SHA-256:a5dfbb6dbf6fc6c6ea9beb2723af059ba3c5b2c86c2f0dc3b21afdc7bb229bf5",
467-
"size": "324863847"
468-
},
469-
{
470-
"host": "x86_64-mingw32",
471-
"url": "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/riscv32-esp-elf-12.2.0_20230208-x86_64-w64-mingw32.zip",
472-
"archiveFileName": "riscv32-esp-elf-12.2.0_20230208-x86_64-w64-mingw32.zip",
473-
"checksum": "SHA-256:9deae9e0013b2f7bbf017f9c8135755bfa89522f337c7dca35872bf12ec08176",
474-
"size": "328092732"
475-
}
476-
]
477-
},
478-
{
479-
"name": "riscv32-esp-elf-gdb",
480-
"version": "12.1_20231023",
481-
"systems": [
482-
{
483-
"host": "x86_64-pc-linux-gnu",
484-
"url": "https://github.com/espressif/binutils-gdb/releases/download/esp-gdb-v12.1_20231023/riscv32-esp-elf-gdb-12.1_20231023-x86_64-linux-gnu.tar.gz",
485-
"archiveFileName": "riscv32-esp-elf-gdb-12.1_20231023-x86_64-linux-gnu.tar.gz",
486-
"checksum": "SHA-256:2c78b806be176b1e449e07ff83429d38dfc39a13f89a127ac1ffa6c1230537a0",
487-
"size": "36630145"
488-
},
489-
{
490-
"host": "aarch64-linux-gnu",
491-
"url": "https://github.com/espressif/binutils-gdb/releases/download/esp-gdb-v12.1_20231023/riscv32-esp-elf-gdb-12.1_20231023-aarch64-linux-gnu.tar.gz",
492-
"archiveFileName": "riscv32-esp-elf-gdb-12.1_20231023-aarch64-linux-gnu.tar.gz",
493-
"checksum": "SHA-256:33f80117c8777aaff9179e27953e41764c5c46b3c576dc96a37ecc7a368807ec",
494-
"size": "36980143"
495-
},
496-
{
497-
"host": "arm-linux-gnueabihf",
498-
"url": "https://github.com/espressif/binutils-gdb/releases/download/esp-gdb-v12.1_20231023/riscv32-esp-elf-gdb-12.1_20231023-arm-linux-gnueabi.tar.gz",
499-
"archiveFileName": "riscv32-esp-elf-gdb-12.1_20231023-arm-linux-gnueabi.tar.gz",
500-
"checksum": "SHA-256:292e6ec0a9381c1480bbadf5caae25e86428b68fb5d030c9be7deda5e7f070e0",
501-
"size": "34950318"
502-
},
503-
{
504-
"host": "i686-pc-linux-gnu",
505-
"url": "https://github.com/espressif/binutils-gdb/releases/download/esp-gdb-v12.1_20231023/riscv32-esp-elf-gdb-12.1_20231023-i586-linux-gnu.tar.gz",
506-
"archiveFileName": "riscv32-esp-elf-gdb-12.1_20231023-i586-linux-gnu.tar.gz",
507-
"checksum": "SHA-256:68a25fbcfc6371ec4dbe503ec92211977eb2006f0c29e67dbce6b93c70c6b7ec",
508-
"size": "35801607"
509-
},
510-
{
511-
"host": "x86_64-apple-darwin",
512-
"url": "https://github.com/espressif/binutils-gdb/releases/download/esp-gdb-v12.1_20231023/riscv32-esp-elf-gdb-12.1_20231023-x86_64-apple-darwin14.tar.gz",
513-
"archiveFileName": "riscv32-esp-elf-gdb-12.1_20231023-x86_64-apple-darwin14.tar.gz",
514-
"checksum": "SHA-256:322c722e6c12225ed8cd97f95a0375105756dc5113d369958ce0858ad1a90257",
515-
"size": "52618688"
516-
},
517-
{
518-
"host": "arm64-apple-darwin",
519-
"url": "https://github.com/espressif/binutils-gdb/releases/download/esp-gdb-v12.1_20231023/riscv32-esp-elf-gdb-12.1_20231023-aarch64-apple-darwin21.1.tar.gz",
520-
"archiveFileName": "riscv32-esp-elf-gdb-12.1_20231023-aarch64-apple-darwin21.1.tar.gz",
521-
"checksum": "SHA-256:c2224b3a8d02451c530cf004c29653292d963a1b4021b4b472b862b6dbe97e0b",
522-
"size": "33149392"
523-
},
524-
{
525-
"host": "i686-mingw32",
526-
"url": "https://github.com/espressif/binutils-gdb/releases/download/esp-gdb-v12.1_20231023/riscv32-esp-elf-gdb-12.1_20231023-i686-w64-mingw32.zip",
527-
"archiveFileName": "riscv32-esp-elf-gdb-12.1_20231023-i686-w64-mingw32.zip",
528-
"checksum": "SHA-256:4b42149a99dd87ee7e6dde25c99bad966c7f964253fa8f771593d7cef69f5602",
529-
"size": "31635103"
530-
},
531-
{
532-
"host": "x86_64-mingw32",
533-
"url": "https://github.com/espressif/binutils-gdb/releases/download/esp-gdb-v12.1_20231023/riscv32-esp-elf-gdb-12.1_20231023-x86_64-w64-mingw32.zip",
534-
"archiveFileName": "riscv32-esp-elf-gdb-12.1_20231023-x86_64-w64-mingw32.zip",
535-
"checksum": "SHA-256:728231546ad5006d34463f972658b2a89e52f660a42abab08a29bedd4a8046ad",
536-
"size": "33400816"
537-
}
538-
]
539-
},
540271
{
541272
"name": "openocd-esp32",
542273
"version": "v0.12.0-esp32-20230921",

0 commit comments

Comments
 (0)
Please sign in to comment.