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
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_
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
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:
>> >
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
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
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
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