-
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/go: error: unrecognized command line option '-rdynamic' when cross-compiling to ARM with -pie #36633
Comments
To cross-compile with pie, you need to set CC to a cross-compiler toolchain, e.g. |
I was not, thank you for pointing this out. However, the error now changed:
|
What is |
Same as my GCC version, 9.2.0. But I think I found the issue:
I can't find a |
Hmm, no, I'm misunderstanding things I think.
|
For completeness sake:
|
I can also trigger this using
|
I'm a little confused. The error says that the The gcc9.2 documentation says that -rdynamic is supported, so it hasn't been removed:
If you manually invoke |
It does, in my case: $ arm-none-eabi-gcc -rdynamic
arm-none-eabi-gcc: error: unrecognized command line option '-rdynamic'
arm-none-eabi-gcc: fatal error: no input files
compilation terminated. Interestingly, the Arch manpage for it does have the option: https://jlk.fjfi.cvut.cz/arch/manpages/man/gcc.1. The one thing I'm seeing is that it seems to need an invocation of |
Adding |
I might be adding the
|
|
|
Although We could probably fix this in the Go linker by using |
It might be worthwhile to consider both. Even if we file a bug against GCC and that gets fixed, it'll still cause problems for people on older GCC versions that do not have the patch. Some distros might backport it, but I doubt it'll be done consistently. If you're willing to accept a patch, I'm happy to attempt the changes myself and submit it. |
My main concern with a patch is that on Solaris GCC does not always translate |
Any updates or possible solutions for this? |
No updates. A possible patch is sketched out above. Anybody want to work on that? Thanks. |
…, in fact support for it is added on a target-specific basis. It looks like nobody has added support for -rdynamic for the arm-none-eabi target. golang/go#36633 "-rdynamic Pass the flag -export-dynamic to the ELF linker, on targets that support it. This instructs the linker to add all symbols, not only used ones, to the dynamic symbol table. This option is needed for some uses of dlopen or to allow obtaining backtraces from within a program. "
I'm not sure if this is supposed to work, i.e
-buildmode pie
for ARM, but nothing seems to suggest it shouldn't.What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
main.go:
$ env GOOS=linux env GOARCH=arm go build -o test -buildmode pie
What did you expect to see?
No error, and a resulting
test
binary.What did you see instead?
The error also occurs if I add
GOARM=7
. It triggers on a combination of-buildmode pie
andGOARCH=arm
. Dropping-buildmode pie
the build succeeds.The text was updated successfully, but these errors were encountered: