-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/cgo: correctly record pkg-config CFLAGS and LDFLAGS in package archives #5224
Labels
Milestone
Comments
the ZeroMQ wrapper might be a good test case. Discussion: https://groups.google.com/d/topic/golang-nuts/st0tegAes4Q/discussion |
This demonstrates the problem. On Linux: Download and install ZeroMQ version 3 from: http://www.zeromq.org/intro:get-the-software Then, run these commands: go get github.com/pebbe/zmq3 cd $GOPATH/src/github.com/pebbe/zmq3/examples go build version.go # this will fail But: go build -ldflags="-linkmode internal" version.go # this will succeed If you already have ZeroMQ version2 installed, and don't want to install version 3, than you can use this package: github.com/pebbe/zmq2 |
They all look like what I reported in this thread: https://groups.google.com/forum/m/#!topic/llgo-dev/Efhcn94mwNU On Friday, April 5, 2013, wrote: |
Same as issue #5205? |
Here's the full log generated with, running with the revision in question: export CGO_LDFLAGS="-L/usr/lib/llvm-3.3/lib -lpthread -lffi -lrt -ldl -lm -Wl,-L/usr/lib/llvm-3.3/lib -lLLVM-3.3" export CGO_CFLAGS="-I/usr/lib/llvm-3.3/include -DNDEBUG -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -g -O2 -fomit-frame-pointer -fPIC" go get -ldflags -v github.com/axw/llgo Attachments:
|
I applied https://golang.org/cl/8465043 and it appears to have fixed the issue |
I think Kamil is referring to the llgo issue. It's different to this issue. Sorry, I mentioned this in issue #5205, but not here. |
Specifically, the problem is that it doesn't recognise the bang. To be fair, the description at http://golang.org/cmd/cgo/ does not permit this. Internal linkmode works quite differently: cmd/go parses the pkg-config line, and interprets the platform filter using standard go/build tag matching (which allows bangs, multiple tags, etc.); cmd/go then links the cgo library, and calls "cgo -dynimport" to determine the required shared object names. A simple (I think?) fix would be to update CGO_LDFLAGS when calling cmd/cgo from cmd/go, and just remove the pkg-config parsing code from cmd/cgo altogether. I don't know if there are any good reasons to not do this - someone on the core dev team care to comment? |
This issue was closed by revision d06be39. Status changed to Fixed. |
This issue was closed.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The text was updated successfully, but these errors were encountered: