Re: [go-nuts] Conditional compiling for android

2018-02-01 Thread Hyang-Ah Hana Kim
Strange. Can you share an example for repro? On Thu, Feb 1, 2018 at 7:07 AM, wrote: > I have similar situation where I need to compile a package specifically > for android and other specifically for linux. > I have included constraints mentioned above for pure linux and pure > android compilatio

Re: [go-nuts] Conditional compiling for android

2018-02-01 Thread Hyang-Ah Hana Kim
Partly true. Build tags like !android should prevent inclusion of the file. Files named with _android suffix or with android buildtag should be included only for android. https://go.googlesource.com/go/+/master/src/time/zoneinfo_android.go https://go.googlesource.com/go/+/master/src/time/zoneinfo_

Re: [go-nuts] go tool trace: --> filtering/modifying

2018-05-07 Thread Hyang-Ah Hana Kim
Have you tried the new annotation api in the tip? tip.golang.org/pkg/runtime/trace? Please see if annotating in the source code with Region or Task would work for your case. On Wed, May 2, 2018 at 8:59 AM, wrote: > High level goal: > >- I have an application with significant number of gorou

Re: [go-nuts] go tool trace: --> filtering/modifying

2018-05-25 Thread Hyang-Ah Hana Kim
www.youtube.com/watch?v=FJQjUueBJ2A >> >> It's worth watching if you are interested in tracing and latency, and >> I'm looking forward to trying the new APIs soon. >> >> >> On Mon, May 7, 2018 at 1:31 PM, Hyang-Ah Hana Kim >> wrote: >> >

Re: [go-nuts] How does proxy.golang.org discover modules to index?

2019-05-28 Thread Hyang-Ah Hana Kim
Hi - The index includes the module/version that the proxy.golang.org ever successfully served. Go commands with GOPROXY=https://proxy.golang.org env var will fetch the specified module/version through the proxy and cause the proxy to learn about them. As long as the hosting sites are publicly acces

Re: [go-nuts] gomobile init should have a flag if we want only IOS or Android

2016-08-31 Thread Hyang-Ah Hana Kim
What do you think if the error message is modified to clearly include the instruction for xcode installation? On Mon, Aug 29, 2016 at 6:03 AM, Abhishek Sinha wrote: > While doing gomobile init on OSX, I get the following error > gomobile: xcrun --show-sdk-path: exit status 1 > xcrun: error: SDK

Re: [go-nuts] Re: Go mobile is not downloading on my OSX 10.12 system. What is going on?

2017-01-12 Thread Hyang-Ah Hana Kim
How did you find nothing happened? Try gomobile init -v -x to see what's happening underneath. On Wed, Jan 11, 2017 at 8:57 PM, Shyamal Chandra wrote: > The instruction found on google search don't know either. > > https://github.com/golang/go/issues/15484 > > > On Wednesday, January 11, 2017

Re: [go-nuts] What versions of mobile OS does go.mobile work on?

2016-07-06 Thread Hyang-Ah Hana Kim
For Android, min API level is 15, ice cream sandwich. The gomobile doc needs update - it mentions API 9. For iOS, I think iOS 8.3 was the earliest one I happened to use (iphone5/6). On Fri, Jul 1, 2016 at 10:51 PM, wrote: > Hi, > > I am considering to write a shared library that works on > both