You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golang-nuts
Hi all
I want to build a dynamic go library with gollvm.
How could I do this?
Thank you.
Ian Lance Taylor
unread,
Jun 29, 2021, 12:47:49 PM6/29/21
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Peng Deng, golang-nuts
On Tue, Jun 29, 2021 at 7:06 AM Peng Deng <dws...@outlook.com> wrote:
>
> I want to build a dynamic go library with gollvm.
> How could I do this?
The usual was is "go build -buildmode=shared" or "go build
-buildmode=c-shared", depending on how you want to use the shared
library. See https://golang.org/cmd/go/#hdr-Build_modes.