Compilation is very slow
Hi all,
some more information
I changed the builder to internal as suggested by MSchultz above, the sources are compiled much more rapidly, so this can be a viable temporary solution for some people.
It would be very interesting to understand why make (the external tool) is troubled when the network interfaces are enabled: pleas fix the issue anyhow!
_Post build commands_
the post build command string must be changed! instead of && (double ampersand) between commands, using the internal builder a ; (semicolon) must be used.
examples:
with external builder
arm-none-eabi-objcopy -O binary "${BuildArtifactFileBaseName}.elf" "${BuildArtifactFileBaseName}.bin" && arm-none-eabi-size "${BuildArtifactFileName}" && arm-none-eabi-readelf -e "${BuildArtifactFileBaseName}.elf"
with internal builder:
arm-none-eabi-objcopy -O binary "${BuildArtifactFileBaseName}.elf" "${BuildArtifactFileBaseName}.bin"; arm-none-eabi-size "${BuildArtifactFileName}"; arm-none-eabi-readelf -e "${BuildArtifactFileBaseName}.elf"
regards,
Adriano