[go-nuts] Re: why the binary generated by go test has no symbol table

2020-09-07 Thread buaa...@gmail.com
There is no ldflags provided, so why the symbol table is stripped 在2020年9月8日星期二 UTC+8 上午10:05:33 写道: > And only on Linux, there is no symbol section in test binary unless I > generate it by go test -c -- You received this message because you are subscribed to the Google Groups "golang-nuts"

[go-nuts] why the binary generated by go test has no symbol table

2020-09-07 Thread buaa...@gmail.com
And only on Linux, there is no symbol section in test binary unless I generate it by go test -c -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [go-nuts] Asynchronous preemption

2020-09-07 Thread Yonatan Gizachew
Got it. Thank you! On Saturday, September 5, 2020 at 12:01:03 PM UTC+9 Ian Lance Taylor wrote: > On Wed, Sep 2, 2020 at 9:11 PM Yonatan Gizachew wrote: > > > > I see. If that is so, what is the job of sysmon thread? > > The sysmon thread is not related to asynchronous preemption. The > sysmon

Re: [go-nuts] cgo cross compilation to arm failed

2020-09-07 Thread Ian Lance Taylor
On Sun, Sep 6, 2020 at 1:53 PM 'Hubert Hirtz' via golang-nuts wrote: > > I am trying to cross-compile a project that depends on sqlite3 on a > amd64 machine (host) for an armhf machine (target), using clang with the > appropriate "--target" flag. > > The build fails on runtime/cgo with the

Re: [go-nuts] zombie parent scenario with golang

2020-09-07 Thread Ian Lance Taylor
On Mon, Sep 7, 2020 at 12:03 AM Uday Kiran Jonnala wrote: > > Thanks for the reply, I get the point on zombie, I do not think the issue > here is parent not reaping child, seems like go process has not finished > execution of some > internal threads (waiting on some futex) and causing SIGCHILD

[go-nuts] Re: Anyone successfully connecting to Oracle (11g) from Go?

2020-09-07 Thread Tamás Gulácsi
Wow, have you reverse-engineered the Oracle SQL.NET connection? Or the Java thin client? Is this legal at all? Though I'd pay a limb for a C-less native, pure Go client... Samy Sultan a következőt írta (2020. szeptember 7., hétfő, 20:01:46 UTC+2): > I make a new package go-ora it is pure go

[go-nuts] Re: Anyone successfully connecting to Oracle (11g) from Go?

2020-09-07 Thread Samy Sultan
I make a new package go-ora it is pure go oracle client no need for instant client at all no need for environmental vars just go-get the package and run you program https://github.com/sijms/go-ora.git في الخميس، 5 يونيو 2014 في تمام الساعة 12:03:05 ص UTC+3، كتب ‪Ron Gidron‬‏ رسالة نصها: > OK

Re: [go-nuts] zombie parent scenario with golang

2020-09-07 Thread Uday Kiran Jonnala
Hi Ian, Thanks for the reply, I get the point on zombie, I do not think the issue here is parent not reaping child, seems like go process has not finished execution of some internal threads (waiting on some futex) and causing SIGCHILD not to be sent to parent. go process named hit with panic

Re: [go-nuts] Generics: after type lists

2020-09-07 Thread targe...@gmail.com
Sorry for interfering. I've gathered statements and expressions which look like candidates for interface-based generalization. Interface and method names are just placeholders. Generic interfaces for collections like slice or map are different beasts. Will post thoughts on them later. I