[go-nuts] Re: Gomobile Reverse Bindings: Cannot import any android packages

2019-04-24 Thread mail
On Wednesday, April 24, 2019 at 2:34:34 PM UTC+2, Mark Bauermeister wrote: > > I'm currently experimenting with Gomobile Reverse Bindings (my hope is to > eventually be able to call getFilesDir(), so I can save my SQLite3 DB on > mobile) and it is, quite literally, driving me insane. > I've

[go-nuts] Re: Proposal: Shared libraries in Go, take 2 (+linux/amd64 implementation)

2019-04-12 Thread mail
Perhaps you're running into https://github.com/golang/go/issues/13492. - elias On Friday, April 12, 2019 at 5:06:08 AM UTC+2, Chao Chen wrote: > > I don't understand initial exec TLS model. But I meet the following > problem when use go shared library. *When I load Go shared library from >

[go-nuts] Re: [ANN] Gio: portable immediate mode GUI programs in Go for iOS/tvOS, Android, macOS, Linux, Windows

2019-04-03 Thread mail
On Monday, April 1, 2019 at 7:18:49 AM UTC+2, Daniel Theophanes wrote: > > I don't typically run wayland anywhere, but I was interested in this > project and installed wayland and weston from my package manager. However, > it seems my package manager's version of weston (v4.0.0) is too old(?)

[go-nuts] Re: x/mobile: Feature, add "-target=io/arm,ios/386" and "-nobitcode" to bind command

2019-04-01 Thread mail
On Monday, April 1, 2019 at 6:30:23 PM UTC+2, Tristian Azuara wrote: > > Hi Elias, thank you for the quick reply, I see, you're correct it does > support the archs for ios, I had not tried it for ios, because the > documentation just mentions that you can specify specific instruction sets >

Re: [go-nuts] [ANN] Gio: portable immediate mode GUI programs in Go for iOS/tvOS, Android, macOS, Linux, Windows

2019-04-01 Thread mail
On Monday, April 1, 2019 at 5:24:29 AM UTC+2, Raffaele Sena wrote: > > While I do find it odd that this project doesn't use github, because > github requires an account, but SourceHut currently also requires to sign > up for an account to submit issues or to submit to the mailing list, I >

Re: [go-nuts] [ANN] Gio: portable immediate mode GUI programs in Go for iOS/tvOS, Android, macOS, Linux, Windows

2019-04-01 Thread mail
On Monday, April 1, 2019 at 2:33:52 AM UTC+2, ohir wrote: > > On Sun, 31 Mar 2019 06:16:43 -0700 (PDT) > ma...@eliasnaur.com wrote: > > > Hi, > > I'm very happy to announce the first public release of Gio, a project > for > > writing portable, hardware accelerated, immediate mode GUI

[go-nuts] Re: x/mobile: Feature, add "-target=io/arm,ios/386" and "-nobitcode" to bind command

2019-04-01 Thread mail
Hi, The -target flag does support architectures. Have you tried -target ios/amd64,ios/arm64,ios/arm from your example? I'm not sure I understand the problem with bitcode and macOS; what is the error you get from -fembed-bitcode? - elias On Monday, April 1, 2019 at 6:32:35 AM UTC+2,

[go-nuts] [ANN] Gio: portable immediate mode GUI programs in Go for iOS/tvOS, Android, macOS, Linux, Windows

2019-03-31 Thread mail
Hi, I'm very happy to announce the first public release of Gio, a project for writing portable, hardware accelerated, immediate mode GUI programs in Go. If you have Go 1.12 installed, $ export GO111MODULE=on $ go run gioui.org/apps/hello should display the proverbial hello world

[go-nuts] Re: gomobile genjava duplicate constructor definition

2019-03-16 Thread mail
On Friday, March 15, 2019 at 6:30:25 PM UTC+1, kevin.h...@twomen.com wrote: > > I am attempting to update a service package which was written to be used > on mobile devices by using the gomobile bind package. It appears there was > a change made in this commit >

[go-nuts] Re: OpenAL and microphone on macos using the mobile pkg

2019-03-07 Thread mail
On Thursday, March 7, 2019 at 7:13:56 PM UTC+1, whiteh...@googlemail.com wrote: > > go1.12 macos 10.12.4 > > I haven't been able to find a Go example of this being used so far. > However I found a C example that I'm porting over to Go that access the > microphone. > > All I'm doing so far