Re: [PATCH 2/2] Add option to use -Og

2022-03-25 Thread Tom Rini
On Tue, Feb 22, 2022 at 12:19:25PM -0500, Sean Anderson wrote: > This adds support for using -Og when building U-Boot. According to the > gcc man page: > > > -Og should be the optimization level of choice for the standard > > edit-compile-debug cycle, offering a reasonable level of optimization

Re: [PATCH 2/2] Add option to use -Og

2022-03-14 Thread Tom Rini
On Mon, Mar 14, 2022 at 11:36:54AM -0400, Sean Anderson wrote: > > > On 3/11/22 9:25 PM, Simon Glass wrote: > > On Tue, 22 Feb 2022 at 10:20, Sean Anderson wrote: > >> > >> This adds support for using -Og when building U-Boot. According to the > >> gcc man page: > >> > >> > -Og should be the

Re: [PATCH 2/2] Add option to use -Og

2022-03-14 Thread Sean Anderson
On 3/11/22 9:25 PM, Simon Glass wrote: > On Tue, 22 Feb 2022 at 10:20, Sean Anderson wrote: >> >> This adds support for using -Og when building U-Boot. According to the >> gcc man page: >> >> > -Og should be the optimization level of choice for the standard >> > edit-compile-debug cycle,

Re: [PATCH 2/2] Add option to use -Og

2022-03-11 Thread Simon Glass
On Tue, 22 Feb 2022 at 10:20, Sean Anderson wrote: > > This adds support for using -Og when building U-Boot. According to the > gcc man page: > > > -Og should be the optimization level of choice for the standard > > edit-compile-debug cycle, offering a reasonable level of optimization > > while

[PATCH 2/2] Add option to use -Og

2022-02-22 Thread Sean Anderson
This adds support for using -Og when building U-Boot. According to the gcc man page: > -Og should be the optimization level of choice for the standard > edit-compile-debug cycle, offering a reasonable level of optimization > while maintaining fast compilation and a good debugging experience.