Search found 12 matches

by xiaolongba
Wed Aug 08, 2018 1:38 pm
Forum: ESP-IDF
Topic: Builds are too big and take too long?
Replies: 19
Views: 22472

Re: Builds are too big and take too long?

Well I don't know how you guys are running menuconfig but the cleanest way I do that is : powershell idf.py menuconfig - from Integrated terminal - by default terminal.integrated.shell.windows = cmd.exe (or powershell) if it is cmd.exe all compilation logs are staying in same window unlike with pow...
by xiaolongba
Wed Aug 08, 2018 2:21 am
Forum: ESP-IDF
Topic: Builds are too big and take too long?
Replies: 19
Views: 22472

Re: Builds are too big and take too long?

Nice. So you are able to compile project? btw.In fact, I have implemented vscode+bash to develop esp32 before, but I wrote it in Chinese. At the same time, the garbled problem has not been solved, and now these problems have been solved.the github addr as shown as belown: https://github.com/xiaolon...
by xiaolongba
Wed Aug 08, 2018 2:11 am
Forum: ESP-IDF
Topic: Builds are too big and take too long?
Replies: 19
Views: 22472

Re: Builds are too big and take too long?

stoikos wrote:try make flash -j5
this method is also can work well.but the cmake idf is not bad.
by xiaolongba
Wed Aug 08, 2018 2:09 am
Forum: ESP-IDF
Topic: Builds are too big and take too long?
Replies: 19
Views: 22472

Re: Builds are too big and take too long?

Deouss wrote:Nice. So you are able to compile project?
yes.thanks for your help :D
by xiaolongba
Mon Aug 06, 2018 8:39 am
Forum: ESP-IDF
Topic: Builds are too big and take too long?
Replies: 19
Views: 22472

Re: Builds are too big and take too long?

That's related to either bad PC - faulty hardware like ram or HD - or something wrong with IDF. Make sure it is python 2.7 not 3 Also try running cmd.exe in separate window solved.as u can see in the picture,it is python2.7 not 3.the reason is the codepage of python2.7 is GBK,when i change the code...
by xiaolongba
Sun Aug 05, 2018 12:26 pm
Forum: ESP-IDF
Topic: Builds are too big and take too long?
Replies: 19
Views: 22472

Re: Builds are too big and take too long?

as do as the tutorial,but Garbled occurred.as shown as below:
WO2R(XLSS4~JBK4@B9U`FVY.png
WO2R(XLSS4~JBK4@B9U`FVY.png (21.6 KiB) Viewed 12263 times
by xiaolongba
Sun Aug 05, 2018 5:23 am
Forum: ESP-IDF
Topic: Builds are too big and take too long?
Replies: 19
Views: 22472

Re: Builds are too big and take too long?

Thank you so much.I will read this tutorial carefully.
by xiaolongba
Sun Aug 05, 2018 5:22 am
Forum: ESP-IDF
Topic: Builds are too big and take too long?
Replies: 19
Views: 22472

Re: Builds are too big and take too long?

But how can i do to improve the speed of compiling on Windows? make -j8 Where "8" is the number of concurrent threads. Usually that's 2x the number of cores. i.e. quad core is 8. Also, disable Windows Defender from scanning your devlopment directories. https://support.microsoft.com/en-us/help/40284...
by xiaolongba
Sat Aug 04, 2018 10:58 am
Forum: ESP-IDF
Topic: Builds are too big and take too long?
Replies: 19
Views: 22472

Re: Builds are too big and take too long?

Deouss wrote:Try CMake IDF on Windows)
do u have some documents about it? Millions of thanks :D
by xiaolongba
Sat Aug 04, 2018 9:00 am
Forum: ESP-IDF
Topic: Builds are too big and take too long?
Replies: 19
Views: 22472

Re: Builds are too big and take too long?

@kolban I am also find that compiling on Linux is multiple times faster than building on Windows.But how can i do to improve the speed of compiling on Windows?I test some enviroment,the experimental data is as follows: 1.build the same app project on the same pc 2.it takes 1mins 9seconds on linux os...