You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22-10Lines changed: 22 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,26 +6,38 @@ This repository is a variant of the [espressif/esp32-arduino-lib-builder](https:
6
6
7
7
It contains modifications:
8
8
9
-
- Needs install of **Add-on**: [twischi/addOns-esp32_AR_lib-builder](https://github.com/twischi/addOns-esp32_AR_lib-builder)
9
+
- Redirects Terminal output infos to serveral files to see what is going on during build without get flooded:
10
+
- log_errors.txt : Errors of any kind.
11
+
- log_instEnviroment.txt : Log when loading and build the enviroment.
12
+
- log_idfBuild.txt : Log when bulding with ipf.py
13
+
- log_pythonBuild.txt: : Log when building with python3.
10
14
11
-
- Hint: It is included in Run-Build section below.
15
+
- Modified ```/tools/config.sh``` to use **standerd [IDF](https://github.com/espressif/esp-idf/branches) & [Adruiono](https://github.com/espressif/arduino-esp32/branches)-Branches** in case you don't set his only our own with ```build.sh```-options.
16
+
17
+
```bash
18
+
if [ -z$IDF_BRANCH ];then
19
+
IDF_BRANCH="release/v5.3"
20
+
fi
21
+
22
+
if [ -z$AR_PR_TARGET_BRANCH ];then
23
+
AR_PR_TARGET_BRANCH="release/v3.1.x"
24
+
fi
25
+
```
12
26
13
27
- Get it running in***macOS***
14
28
29
+
- Using ```osascript``` - what is ***macOS***-specific - to open the ouputs in diffrent terminals.
30
+
31
+
- Needs install of **Add-on**: [twischi/addOns-esp32_AR_lib-builder](https://github.com/twischi/addOns-esp32_AR_lib-builder)
32
+
33
+
- Hint: It is included in Run-Build section below.
34
+
15
35
- Runs the **script**```postBuild_AggregatedFolders.sh``` what is located here: ```/../addOns-esp32_AR_lib-builder/```
16
36
17
37
- Hint: **Needs** the script intalled:
18
38
- One folder UP: ```/../``` (from folder executing the build.sh)
19
39
- Expecting to find: ```addOns-esp32_AR_lib-builder```
20
40
21
-
- Redirects Terminal output infos to serveral files to see what is going on during build without get flooded:
22
-
- log_errors.txt : Errors of any kind.
23
-
- log_instEnviroment.txt : Log when loading and build the enviroment.
24
-
- log_idfBuild.txt : Log when bulding with ipf.py
25
-
- log_pythonBuild.txt: : Log when building with python3.
26
-
27
-
- Using ```osascript``` - what is ***macOS***-specific - to open the ouputs in diffrent terminals.
0 commit comments