Hi All,
To pull cross compile tools in Coreboot the below command is run, make crossgcc-i386 CPUS=6
Is there a step or a command to clean all the tools that got installed ?
Regards Ranga
Hi Ranga,
On 12.02.19 15:24, galla rao wrote:
To pull cross compile tools in Coreboot the below command is run, make crossgcc-i386 CPUS=6
Is there a step or a command to clean all the tools that got installed ?
simply, what `make help` suggests: `make crossgcc-clean`.
The resulting toolchains end up in `util/crossgcc/xgcc/` btw. Beside that, `make crossgcc-clean` would also delete build artifacts from a failed toolchain build.
Nico
Thank you Nico for response, it clears xgcc folders in crossgcc How about tarballs that were also downloaded ?
On Tue, Feb 12, 2019 at 6:39 PM Nico Huber nico.h@gmx.de wrote:
Hi Ranga,
On 12.02.19 15:24, galla rao wrote:
To pull cross compile tools in Coreboot the below command is run, make crossgcc-i386 CPUS=6
Is there a step or a command to clean all the tools that got installed ?
simply, what `make help` suggests: `make crossgcc-clean`.
The resulting toolchains end up in `util/crossgcc/xgcc/` btw. Beside that, `make crossgcc-clean` would also delete build artifacts from a failed toolchain build.
Nico
On 13.02.19 07:17, galla rao wrote:
Thank you Nico for response, it clears xgcc folders in crossgcc How about tarballs that were also downloaded ?
Probably not. `make -Cutil/crossgcc/ distclean` should do it. Don't know if there is any top-level make target that triggers it. These things are probably not much tested as it's too easy to do cleanups using Git.
Nico