File tree 1 file changed +3
-9
lines changed
1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ if ! [ -x "$(command -v git)" ]; then
10
10
exit 1
11
11
fi
12
12
13
+ # Fixes building some components. See https://github.com/espressif/arduino-esp32/issues/10167
14
+ export IDF_COMPONENT_OVERWRITE_MANAGED_COMPONENTS=1
15
+
13
16
export TARGET=" esp32"
14
17
BUILD_TYPE=" all"
15
18
SKIP_ENV=0
@@ -197,9 +200,6 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
197
200
198
201
echo " * Build IDF-Libs: $idf_libs_configs "
199
202
rm -rf build sdkconfig
200
- pushd $AR_MANAGED_COMPS
201
- rm -- ** /.component_hash
202
- popd
203
203
idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $idf_libs_configs " idf-libs
204
204
if [ $? -ne 0 ]; then exit 1; fi
205
205
@@ -212,9 +212,6 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
212
212
213
213
echo " * Build BootLoader: $bootloader_configs "
214
214
rm -rf build sdkconfig
215
- pushd $AR_MANAGED_COMPS
216
- rm -- ** /.component_hash
217
- popd
218
215
idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $bootloader_configs " copy-bootloader
219
216
if [ $? -ne 0 ]; then exit 1; fi
220
217
done
@@ -228,9 +225,6 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
228
225
229
226
echo " * Build Memory Variant: $mem_configs "
230
227
rm -rf build sdkconfig
231
- pushd $AR_MANAGED_COMPS
232
- rm -- ** /.component_hash
233
- popd
234
228
idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $mem_configs " mem-variant
235
229
if [ $? -ne 0 ]; then exit 1; fi
236
230
done
You can’t perform that action at this time.
0 commit comments