Thanks Ian.
Makes sense now. I was scratching my brain to figure out possible ways that
lack of optimization could cause actual failures.The Go team does an
amazing job.
On Friday, July 9, 2021 at 11:02:59 PM UTC-4 Ian Lance Taylor wrote:
> On Fri, Jul 9, 2021 at 8:33 AM jake...@gmail.com
>
On Fri, Jul 9, 2021 at 8:33 AM jake...@gmail.com wrote:
>
> On Thursday, July 8, 2021 at 11:45:19 PM UTC-4 Ian Lance Taylor wrote:
>>
>> On Thu, Jul 8, 2021 at 8:41 PM 董⼀峰 wrote:
>> >
>> > Thanks for replying.
>> > So golang only supports debugging optimized golang runtime?
>>
>> Well, Go require
On Thursday, July 8, 2021 at 11:45:19 PM UTC-4 Ian Lance Taylor wrote:
> On Thu, Jul 8, 2021 at 8:41 PM 董⼀峰 wrote:
> >
> > Thanks for replying.
> > So golang only supports debugging optimized golang runtime?
>
> Well, Go requires that the runtime package be built with optimization
> (when us
thanks
On Fri, Jul 9, 2021, 11:44 wrote:
On Thu, Jul 8, 2021 at 8:41 PM 董⼀峰 wrote: >
> Thanks for replying. > So golang only supports debugging optimized golang
runtime? Well, Go requires that the runtime package be built with
optimization (when using the gc compiler, which is the default). So, y
On Thu, Jul 8, 2021 at 8:41 PM 董⼀峰 wrote:
>
> Thanks for replying.
> So golang only supports debugging optimized golang runtime?
Well, Go requires that the runtime package be built with optimization
(when using the gc compiler, which is the default). So, yes, when
running runtime code under the
Thanks for replying.
So golang only supports debugging optimized golang runtime?
It is weird to me as a C++ developer. (T.T)
Yifeng
On Fri, Jul 9, 2021, 11:38 wrote:
On Thu, Jul 8, 2021 at 7:43 AM Axis wrote:
> > I am new in golang community. > I just want to build a debug golang to
do better d