Before logging an issue, please update to the latest release of Visual Micro from the Downloads Page.

When Logging a Support Issue in the Forum, please ensure you have also:-

  • Enabled vMicro > Compiler > Show Build Properties
  • Re-Compile your program with these settings enabled
 
Save the new Output to a Text File and....
  • Click the Reply button and attach as .txt file OR
  • Click here to Email us with the file attached, and a link to your post
Support requests without the output above may be impossible to answer, so please help us to help you
 
Page Index Toggle Pages: 1 Send TopicPrint
Hot Topic (More than 8 Replies) Arduino_Core_STM32 (Read 272 times)
Trek19
Junior Member
**
Offline


Posts: 90
Location: UK
Joined: Dec 2nd, 2013
Arduino_Core_STM32
Mar 21st, 2025 at 3:59pm
Print Post  
I am experimenting with the Arduino_Core_STM32 but whereas all other Arduino boards compile in about 2 seconds this takes over a minute which is annoyingly long when trying to see the effect of small code changes.
I have posted a question on https://www.stm32duino.com/viewtopic.php?t=2591 but still not made much improvement.

In VM I have High speed parallel builds and deep search optimized, I tried "Visual Micro no IDE" and "Arduino 2" but both have the same time compiles. I have No serial or USB selected for board options.

My computer is
Windows 10 Home 64-bit
Intel Core i5 6600 @ 3.30GHz
8.00GB Single-Channel DDR4 @ 1064MHz
Storage
119GB SAMSUNG MZNLF128HCHP-00000 (SATA (SSD))
465GB Western Digital WDC WD5000AAKS-60WWPA0 (SATA )
232GB Samsung SSD 870 EVO 250GB (SATA (SSD))
I have all my programmes on C: which is the Samsung 232GB SSD and the Arduino folder on E: which is the 119GB Samsung. 

Attached Zip of vebose from VisualMicro with timeline . 

I have tried to optimise my computer but is there anything which will have significant improvement, any advice would be welcome.

Jim
  

Please Register or Login to the Forum to see File Attachments
Back to top
 
IP Logged
 
Simon@Visual Micro
Administrator
*****
Offline


Posts: 2652
Joined: Feb 13th, 2019
Re: Arduino_Core_STM32
Reply #1 - Mar 21st, 2025 at 5:04pm
Print Post  
Thanks for the report and the log file.

Just to check, when you say "other boards" I assume these are non-STM32 boards?


From the log all of the code compilation seems correct and cached, but the log shows the prebuild #1 hook is taking 30s to execute.
(The prebuild.sh script it executes via busybox looks simple enough to generate the build.opt and requiredLibraries.cpp)

Can you try adding exclusions to the busybox program and the DLL files in the same folder to Windows Defender (or your current antivirus real time scanner).

Quote:
"c:\ Users\ james\ AppData\ Local\Arduino15\ packages\ STMicroelectronics\ tools \STM32Tools\ 2.3.0 \win\ busybox.exe"

« Last Edit: Mar 21st, 2025 at 5:05pm by Simon@Visual Micro »  
Back to top
IP Logged
 
Trek19
Junior Member
**
Offline


Posts: 90
Location: UK
Joined: Dec 2nd, 2013
Re: Arduino_Core_STM32
Reply #2 - Mar 22nd, 2025 at 9:37am
Print Post  
Yes I meant all other non STM boards.
In Bitdefender I excluded the whole folder: ols\2.3.0\win
That reduced the repeat compile to 39 seconds and a file change compile to 51 seconds.
I tried turning off Bitdeender completely and that produced 40 and 52 seconds.
56  seconds to build and upload a changed file.
I have my Arduino file and hence projects on a different drive to the programme files, would that slow things down?

Included verbose with file change build.

Jim
« Last Edit: Mar 22nd, 2025 at 9:52am by Trek19 »  

Please Register or Login to the Forum to see File Attachments
Back to top
 
IP Logged
 
Simon@Visual Micro
Administrator
*****
Offline


Posts: 2652
Joined: Feb 13th, 2019
Re: Arduino_Core_STM32
Reply #3 - Mar 24th, 2025 at 1:52pm
Print Post  
Thanks for clarifying, the non-STM boards will use different compilers and toolchains so the build times can be drastically different as you have seen.  ESP32 can be a slower build for example due to the volume of internal libraries, wheras an AVR board will build in a few seconds.

I wouldn't imagine the different disks would make a major difference to compile time, but depends on various factors (disk speed, which bus each is connected to etc).  The best way to check would be to create a simple project (e.g. blink) on the C: drive and compile it.

It sounds like there is some improvement, however it does feel that busybox is slowing this down more than it should still.

The script can be converted to batch and used instead of the current busybox shell script, a quick attempt is attached:
1) Download the ZIP attachment
2) Copy the prebuild.bat to your project (next to the INO File)
3) Add a Local board.txt to your project (vMicro > Add Code > Add Local board.txt)
4) Paste in the contents from the board.txt file included in the ZIP

That should shave about 14s of your build time for every build of that individual project.  It can be deployed globally with some different steps if this helps.....
  

Please Register or Login to the Forum to see File Attachments
Back to top
IP Logged
 
Simon@Visual Micro
Administrator
*****
Offline


Posts: 2652
Joined: Feb 13th, 2019
Re: Arduino_Core_STM32
Reply #4 - Mar 25th, 2025 at 3:05pm
Print Post  
You can also speed up the build time by changing the vMicro > Compiler > Search Libs in Libs to Top Level.  With the batch script from above this reduces the compile time on my machine from 29s to <3s.

The None setting is even faster but can affect your build depending on the libraries in use at the time.  To find the optimum settings for your project you can run vMicro > Compiler > Run Build Speed and Library Analysis.  This will run a full build, and advise the best options for the Deep Search at the end of the output.
  
Back to top
IP Logged
 
Trek19
Junior Member
**
Offline


Posts: 90
Location: UK
Joined: Dec 2nd, 2013
Re: Arduino_Core_STM32
Reply #5 - Mar 28th, 2025 at 8:50am
Print Post  
OK Simon, thanks for all your efforts.
I ran Build speed and library analysis which suggested Root and None which I applied.
Without the boards.txt a file change (delay(100) to delay(1000)) build takes approx 51 seconds.
Using boards.txt  a file change build takes approx 47 seconds, a saving of approx 4 seconds.
Having the project in the same drive as the programmes made no difference.
I have attached the verbose for a file change build with the boards,txt for your information.
Its just about acceptable now, maybe I need a faster computer.
  

Please Register or Login to the Forum to see File Attachments
Back to top
 
IP Logged
 
Trek19
Junior Member
**
Offline


Posts: 90
Location: UK
Joined: Dec 2nd, 2013
Re: Arduino_Core_STM32
Reply #6 - Mar 28th, 2025 at 4:45pm
Print Post  
Out of interest I built for an ESP32 board which took 20 seconds and for an ATSAMD51 2 seconds.
It seems like the ST boards are the slowest to build.
  
Back to top
 
IP Logged
 
Simon@Visual Micro
Administrator
*****
Offline


Posts: 2652
Joined: Feb 13th, 2019
Re: Arduino_Core_STM32
Reply #7 - Mar 28th, 2025 at 4:56pm
Print Post  
Different board packages use different toolchains and compilers, as well as different numbers of internal libraries, all of which can create considerable differences in compiling the same sketch.

The latest log you attached doesn't appear to have overridden the prebuild hook correctly, as it is still using the old busybox approach.

Could you try amending it to from "recipe.hooks.prebuild.1.pattern.windows" to "recipe.hooks.prebuild.1.pattern" and restarting Visual Studio afterwards to see if this helps?

  
Back to top
IP Logged
 
Trek19
Junior Member
**
Offline


Posts: 90
Location: UK
Joined: Dec 2nd, 2013
Re: Arduino_Core_STM32
Reply #8 - Mar 28th, 2025 at 5:50pm
Print Post  
Build a change now down to 47 seconds.
Verbose atached.
  

Please Register or Login to the Forum to see File Attachments
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint