-
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/link: link failure caused by duplicated LDFLAGS passed to external linker #25930
Comments
For a quick fix, change the line in argv = append(argv, ldflag...) as the following, {
added := map[string]bool{}
for _, s := range ldflag {
if added[s] {
continue
}
added[s] = true
argv = append(argv, s)
}
} |
/cc @ianlancetaylor |
The suggested fix above is unfortunately too simple, as some options like |
While analyzing the code for a safe fix, I realized that using It looks like this, /*
#cgo LDFLAGS: "-Wl,--version-script=${SRCDIR}/export.txt"
//...
*/
#import "C"
// ... Note that this flag is not in the white list and requires the following environment variable, CGO_LDFLAGS_ALLOW="-Wl,--version-script=[a-zA-Z0-9+-_/.]+" It seems that |
@ianlancetaylor, I got a new idea for a general fix.
Note that the tag format is (a const uuid + length of the whole |
@albertjin For copyright reasons I prefer to look at patches submitted using as a PR or via Gerrit, to ensure that the CLA is signed. It sounds like you are suggesting handling |
Is there any way to blacklist or remove certain ldflags from making it to the linker invocation? For instance, |
Can you simply add the If that doesn't work, the next fallback would be to write a little script that shuffles the arguments as you need, and pass that script as |
For my situation, which was a generic build and deployment helper, I actually made a wrapper for the native compiler/linker without fixing the go toolchain. The method is the same as done in the previous patch, by adding a prefix mark in the environment variable CGO_LDFLAGS and getting rid of the duplicates later. I tried to consolidate and submit the previous patch but hesitated. Maybe documenting the limitation of CGO_LDFLAGS is a final fix. |
I also stumbled upon this while attempting to use:
Linking fails as the final
By adding de-duplication for The workaround shown in #25930 (comment) also does not work as apparently there is an allowlist of flags (in |
What version of Go are you using (
go version
)?go1.10.3
Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?macOS/amd64, doing cross compile for android/arm64
What did you do?
export GOOS=android
export GOARCH=arm64
export CC=/path/to/androd/gcc
export CXX=/path/to/androd/g++
export CGO_ENABLED=1
export CGO_LDFLAGS="-Wl,--version-script=/the/version-script/export.txt"
go build -buildmode=c-shared -ldflags="-s -w -v" -v -o libxxx.so foo/bar
What did you expect to see?
The shared library is generated without any error.
What did you see instead?
In the output line
0.19 host link: ...
"-Wl,--version-script=/the/version-script/export.txt" is repeated 4 time and there are 3 errors,
Note that if the version script contains a version name, the error message is 'duplicate version tag xxx'.
The text was updated successfully, but these errors were encountered: