-
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: GOARM=7 output has no ARM attribute section, confusing readelf #15862
Comments
I remember this coming up about a year or so ago. There is a field in the /cc @mwhudson who might remember more On Fri, Jun 17, 2016 at 9:45 AM, JBD notifications@github.com wrote:
|
We set the flags in the ELF header in As far as I know the Go toolchain never generates an ARM attributes section. In this case we are talking about The fix will probably be for the Go linker to generate an ARM attributes section when producing the go.o file to pass to the external linker. @ClarkGuan Does this actually make a difference? |
I drafted a long-ish comment, but basically I agree with Ian: does this matter? If so, we should generate an .ARM.attributes section when externally linking. We can probably just cook up an appropriate section for each GOARM value as a binary blob in the linker and just dump it into the .o file. |
Hello @ianlancetaylor , first please forgive my poor English... |
@ClarkGuan I understand that readelf says one thing and |
@ianlancetaylor OK, thx~ |
Please answer these questions before submitting your issue. Thanks!
#1. What version of Go are you using (
go version
)?Go 1.6
#2. What operating system and processor architecture are you using (
go env
)?GOOS=android
GOARCH=arm
CC=$GOMOBILE/android-ndk-r10e/arm/bin/arm-linux-androideabi-gcc
CXX=$GOMOBILE/android-ndk-r10e/arm/bin/arm-linux-androideabi-g++
CGO_ENABLED=1
GOARM=7
go build -p=4 -pkgdir=$GOMOBILE/pkg_android_arm -tags="" -v -x -i -gcflags=-shared -ldflags=-shared
-buildmode=c-shared
What did you do?
If possible, provide a recipe for reproducing the error.
A complete runnable program is good.
A link on play.golang.org is best.
Any gomobile build or bind can reproduce it.
Segmentation fault on OS X 10.5 386 for "net" test #4. What did you expect to see?
when use “arm-linux-androideabi-readelf -A xxx.so” cmd, I hope something like this
Attribute Section: aeabi
File Attributes
Tag_CPU_name: "ARM v7"
Tag_CPU_arch: v7
Tag_CPU_arch_profile: Application
Tag_ARM_ISA_use: Yes
Tag_THUMB_ISA_use: Thumb-2
Tag_FP_arch: VFPv3-D16
Tag_ABI_PCS_wchar_t: 4
Tag_ABI_FP_denormal: Needed
Tag_ABI_FP_exceptions: Needed
Tag_ABI_FP_number_model: IEEE 754
Tag_ABI_align_needed: 8-byte
Tag_ABI_enum_size: int
Tag_ABI_HardFP_use: SP and DP
Tag_ABI_optimization_goals: Aggressive Speed
Tag_CPU_unaligned_access: v6
Tag_DIV_use: Not allowed
#5. What did you see instead?
But output like this:
Attribute Section: aeabi
File Attributes
Tag_CPU_name: "5TE"
Tag_CPU_arch: v5TE
Tag_ARM_ISA_use: Yes
Tag_THUMB_ISA_use: Thumb-1
Tag_FP_arch: VFPv2
Tag_ABI_PCS_wchar_t: 4
Tag_ABI_FP_denormal: Needed
Tag_ABI_FP_exceptions: Needed
Tag_ABI_FP_number_model: IEEE 754
Tag_ABI_align_needed: 8-byte
Tag_ABI_enum_size: int
Tag_ABI_optimization_goals: Aggressive Speed
which much like a armv5te so file...
The text was updated successfully, but these errors were encountered: