Search found 12 matches
- Wed Aug 08, 2018 1:38 pm
- Forum: ESP-IDF
- Topic: Builds are too big and take too long?
- Replies: 19
- Views: 23175
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...
- Wed Aug 08, 2018 2:21 am
- Forum: ESP-IDF
- Topic: Builds are too big and take too long?
- Replies: 19
- Views: 23175
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...
- Wed Aug 08, 2018 2:11 am
- Forum: ESP-IDF
- Topic: Builds are too big and take too long?
- Replies: 19
- Views: 23175
Re: Builds are too big and take too long?
this method is also can work well.but the cmake idf is not bad.stoikos wrote:try make flash -j5
- Wed Aug 08, 2018 2:09 am
- Forum: ESP-IDF
- Topic: Builds are too big and take too long?
- Replies: 19
- Views: 23175
Re: Builds are too big and take too long?
yes.thanks for your helpDeouss wrote:Nice. So you are able to compile project?
- Mon Aug 06, 2018 8:39 am
- Forum: ESP-IDF
- Topic: Builds are too big and take too long?
- Replies: 19
- Views: 23175
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...
- Sun Aug 05, 2018 12:26 pm
- Forum: ESP-IDF
- Topic: Builds are too big and take too long?
- Replies: 19
- Views: 23175
Re: Builds are too big and take too long?
as do as the tutorial,but Garbled occurred.as shown as below:Deouss wrote:https://esp32.com/viewtopic.php?f=13&t=6383
- Sun Aug 05, 2018 5:23 am
- Forum: ESP-IDF
- Topic: Builds are too big and take too long?
- Replies: 19
- Views: 23175
Re: Builds are too big and take too long?
Thank you so much.I will read this tutorial carefully.Deouss wrote:https://esp32.com/viewtopic.php?f=13&t=6383
- Sun Aug 05, 2018 5:22 am
- Forum: ESP-IDF
- Topic: Builds are too big and take too long?
- Replies: 19
- Views: 23175
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...
- Sat Aug 04, 2018 10:58 am
- Forum: ESP-IDF
- Topic: Builds are too big and take too long?
- Replies: 19
- Views: 23175
Re: Builds are too big and take too long?
do u have some documents about it? Millions of thanksDeouss wrote:Try CMake IDF on Windows)
- Sat Aug 04, 2018 9:00 am
- Forum: ESP-IDF
- Topic: Builds are too big and take too long?
- Replies: 19
- Views: 23175
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...